Merge pull request #2 from MasterGroosha/patch-1

Removed redundant conversion to string in config.py
This commit is contained in:
Kostiantyn Kriuchkov
2020-11-29 16:34:14 +02:00
committed by GitHub

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"),