This commit is contained in:
djimbo
2022-08-15 09:06:26 +03:00
parent a70c1a8dfa
commit d09604dd4b
8 changed files with 9 additions and 10 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
from aiogram import Bot
from aiogram.types import BotCommand, BotCommandScopeChat, BotCommandScopeDefault
from tgbot.config import get_admins
from tgbot.data.config import get_admins
# Команды для юзеров
user_commands = [
+1 -1
View File
@@ -2,7 +2,7 @@
from aiogram.dispatcher.filters import BaseFilter
from aiogram.types import Message
from tgbot.config import get_admins
from tgbot.data.config import get_admins
# Проверка на админа
+1 -1
View File
@@ -3,7 +3,7 @@ import logging as bot_logger
import colorlog
from tgbot.config import PATH_LOGS
from tgbot.data.config import PATH_LOGS
# Формат логгирования
log_formatter_file = bot_logger.Formatter("%(levelname)s | %(asctime)s | %(filename)s:%(lineno)d | %(message)s")