mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 17:44:50 +00:00
This commit fixes the style issues introduced in 95ecce1 according to the output
from black and isort.
Details: https://deepsource.io/gh/yasirarism/MissKatyPyro/transform/2b5c318f-57d7-4419-8e76-1d6c31d72999/
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
13 lines
378 B
Python
13 lines
378 B
Python
"""
|
|
* @author yasir <yasiramunandar@gmail.com>
|
|
* @date 2022-09-06 10:12:09
|
|
* @lastModified 2022-12-01 09:34:27
|
|
* @projectName MissKatyPyro
|
|
* Copyright @YasirPedia All rights reserved
|
|
"""
|
|
from motor.motor_asyncio import AsyncIOMotorClient as MongoClient
|
|
|
|
from misskaty.vars import DATABASE_URI
|
|
|
|
mongo = MongoClient(DATABASE_URI)
|
|
dbname = mongo.MissKatyDB
|