Исправлена ошибка замены токена

This commit is contained in:
2025-08-21 16:29:38 +07:00
parent 1bd1c0c1ca
commit ffe7d6d0ba

View File

@@ -13,4 +13,4 @@ token_files = {
for bot, path in token_files.items(): for bot, path in token_files.items():
if os.path.exists(path): if os.path.exists(path):
with open(path, "r") as file: with open(path, "r") as file:
TOKENS = {bot: file.read()} TOKENS[bot] = file.read()