From 43ff7cbb6fee5d0270178547e1dd164704685e6b Mon Sep 17 00:00:00 2001 From: AssistenYansu <77886282+AssistenYansu@users.noreply.github.com> Date: Sat, 23 Jan 2021 21:43:37 +0800 Subject: [PATCH] Update __init__.py --- userbot/__init__.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/userbot/__init__.py b/userbot/__init__.py index 4631f9b..5c8be96 100644 --- a/userbot/__init__.py +++ b/userbot/__init__.py @@ -42,8 +42,7 @@ # Check if the config was edited by using the already used variable. # Basically, its the 'virginity check' for the config file ;) -CONFIG_CHECK = os.environ.get( - "___________PLOX_______REMOVE_____THIS_____LINE__________", None) +CONFIG_CHECK = os.environ.get("", None) if CONFIG_CHECK: LOGS.info( @@ -52,8 +51,8 @@ quit(1) # Telegram App KEY and HASH -API_KEY = os.environ.get("API_KEY", None) -API_HASH = os.environ.get("API_HASH", None) +API_KEY = os.environ.get("API_KEY", "2918781") +API_HASH = os.environ.get("API_HASH", "382bc97fadc0bdf219e49375b483ae49") # Photo Chat - Get this value from http://antiddos.systems API_TOKEN = os.environ.get("API_TOKEN", None)