Reformatted and cleaned up everything

This commit is contained in:
2025-04-16 18:05:07 +02:00
parent e90694f0aa
commit a100324265
9 changed files with 40 additions and 32 deletions

View File

@@ -9,7 +9,8 @@ from sys import exit
from libbot.utils import json_read
from classes.pyroclient import PyroClient
from modules.logging_utils import get_logging_config, get_logger
from modules.logging_utils import get_logger, get_logging_config
# Main uses MongoDB implementation of DB,
# but you can also select SQLite one below
# from modules.migrator_sqlite import migrate_database
@@ -52,9 +53,7 @@ def main():
logger.info("Migration finished. Exiting...")
exit()
client = PyroClient(
scheduler=scheduler, commands_source=json_read(Path("commands.json"))
)
client = PyroClient(scheduler=scheduler, commands_source=json_read(Path("commands.json")))
# Conversation(client)
try: