From 8719efd6198bd32d384167b711789da74204f069 Mon Sep 17 00:00:00 2001 From: Game_Time <108236317+RayBytes@users.noreply.github.com> Date: Sat, 19 Aug 2023 19:26:14 +0500 Subject: [PATCH] Update stats.py to enviorn --- api/db/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/db/stats.py b/api/db/stats.py index 1317a05..53bc17c 100644 --- a/api/db/stats.py +++ b/api/db/stats.py @@ -23,7 +23,7 @@ class StatsManager: """ def __init__(self): - self.conn = AsyncIOMotorClient(os.getenv('MONGO_URI')) + self.conn = AsyncIOMotorClient(os.environ['MONGO_URI']) async def _get_collection(self, collection_name: str): return self.conn[os.getenv('MONGO_NAME', 'nova-test')][collection_name]