diff --git a/sample_config.py b/sample_config.py index ef5a88df4..2db5a171c 100644 --- a/sample_config.py +++ b/sample_config.py @@ -7,7 +7,7 @@ class Config(object): TG_BOT_TOKEN = os.environ.get("TG_BOT_TOKEN", "") # The Telegram API things APP_ID = int(os.environ.get("APP_ID", 12345)) - API_HASH = os.environ.get("API_HASH") + API_HASH = os.environ.get("API_HASH", "") # Get these values from my.telegram.org # Array to store users who are authorized to use the bot AUTH_USERS = set(int(x) for x in os.environ.get("AUTH_USERS", "").split())