diff --git a/src/libs/tokens_formatter.py b/src/libs/tokens_formatter.py index f7f12ad..684e48f 100644 --- a/src/libs/tokens_formatter.py +++ b/src/libs/tokens_formatter.py @@ -13,4 +13,4 @@ token_files = { for bot, path in token_files.items(): if os.path.exists(path): with open(path, "r") as file: - TOKENS = {bot: file.read()} \ No newline at end of file + TOKENS[bot] = file.read() \ No newline at end of file