This commit is contained in:
diduchenko 2020-12-14 12:02:03 +03:00
commit d0a0c45003
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ from dotenv import load_dotenv
load_dotenv()
BOT_TOKEN = str(os.getenv("BOT_TOKEN"))
BOT_TOKEN = os.getenv("BOT_TOKEN")
admins = [
os.getenv("ADMIN_ID"),

View File

@ -1,4 +1,4 @@
aiogram==2.10.1
aiohttp==3.6.2
aiogram==2.11.2
aiohttp>=3.6.2
aioredis==1.3.1
python-dotenv