Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
TibebeJS committed Jan 3, 2022
2 parents a5a0117 + e7dbc11 commit b8dffad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@

load_dotenv()

api_id = getenv("API_ID")
api_id = int(getenv("API_ID"))
api_hash = getenv("API_HASH")

GROUP_ID = getenv("GROUP_ID") # GROUP you want to install the bot on
LOG_CHANNEL_ID = getenv(
GROUP_ID = int(getenv("GROUP_ID")) # GROUP you want to install the bot on
LOG_CHANNEL_ID = int(getenv(
"LOG_CHANNEL_ID"
) # Channel where the logs are going to be sent to
)) # Channel where the logs are going to be sent to

LOGGER_BOT_TOKEN = getenv("LOGGER_BOT_TOKEN")

Expand Down

0 comments on commit b8dffad

Please sign in to comment.