(self)
| 18 | |
| 19 | class TechifyBots: |
| 20 | def __init__(self): |
| 21 | mongo_client=AsyncIOMotorClient(Config.DB_URL) |
| 22 | db=mongo_client[Config.DB_NAME] |
| 23 | self.settings_col=db["settings"] |
| 24 | |
| 25 | async def get_maintenance(self)->bool: |
| 26 | data=await self.settings_col.find_one({"_id":"maintenance"}) |
nothing calls this directly
no outgoing calls
no test coverage detected