Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mhdrzn authored Aug 31, 2022
1 parent d085f07 commit b9e4d99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

DB_URL = os.environ.get("DB_URL","")

FLOOD = int(environ.get("FLOOD", "10"))
FLOOD = int(os.environ.get("FLOOD", "10"))

START_PIC = environ.get("START_PIC", "https://telegra.ph/file/04d08445dce68c9a57b25.jpg")
START_PIC = os.environ.get("START_PIC", "https://telegra.ph/file/04d08445dce68c9a57b25.jpg")

ADMIN = [int(admin) if id_pattern.search(admin) else admin for admin in os.environ.get('ADMIN', '').split()]

0 comments on commit b9e4d99

Please sign in to comment.