Small config reading fix

This commit is contained in:
Profitroll 2023-08-14 15:20:48 +02:00
parent 176f5d35c3
commit 235fa37252
Signed by: profitroll
GPG Key ID: FA35CAB49DACD3B2
1 changed files with 2 additions and 4 deletions

View File

@ -1,11 +1,9 @@
"""Module that provides all database columns"""
from async_pymongo import AsyncClient
from ujson import loads
from libbot import sync
with open("config.json", "r", encoding="utf-8") as f:
db_config = loads(f.read())["database"]
f.close()
db_config = sync.config_get("database")
if db_config["user"] is not None and db_config["password"] is not None:
con_string = "mongodb://{0}:{1}@{2}:{3}/{4}".format(