Spaces:
Sleeping
Sleeping
Captain Ezio
commited on
Commit
·
4e843ab
1
Parent(s):
f125c0e
Update vars.py
Browse files- Powers/vars.py +3 -3
Powers/vars.py
CHANGED
@@ -12,7 +12,7 @@ class Config:
|
|
12 |
|
13 |
LOGGER = True
|
14 |
BOT_TOKEN = config("BOT_TOKEN", default=None)
|
15 |
-
API_ID = int(config("API_ID", default=
|
16 |
API_HASH = config("API_HASH", default=None)
|
17 |
OWNER_ID = int(config("OWNER_ID", default=1344569458))
|
18 |
MESSAGE_DUMP = int(config("MESSAGE_DUMP", default=-100))
|
@@ -27,14 +27,14 @@ class Config:
|
|
27 |
int(i)
|
28 |
for i in config(
|
29 |
"SUDO_USERS",
|
30 |
-
default="",
|
31 |
).split(" ")
|
32 |
]
|
33 |
WHITELIST_USERS = [
|
34 |
int(i)
|
35 |
for i in config(
|
36 |
"WHITELIST_USERS",
|
37 |
-
default="",
|
38 |
).split(" ")
|
39 |
]
|
40 |
DB_URI = config("DB_URI", default="")
|
|
|
12 |
|
13 |
LOGGER = True
|
14 |
BOT_TOKEN = config("BOT_TOKEN", default=None)
|
15 |
+
API_ID = int(config("API_ID", default="123"))
|
16 |
API_HASH = config("API_HASH", default=None)
|
17 |
OWNER_ID = int(config("OWNER_ID", default=1344569458))
|
18 |
MESSAGE_DUMP = int(config("MESSAGE_DUMP", default=-100))
|
|
|
27 |
int(i)
|
28 |
for i in config(
|
29 |
"SUDO_USERS",
|
30 |
+
default="1344569458",
|
31 |
).split(" ")
|
32 |
]
|
33 |
WHITELIST_USERS = [
|
34 |
int(i)
|
35 |
for i in config(
|
36 |
"WHITELIST_USERS",
|
37 |
+
default="1344569458",
|
38 |
).split(" ")
|
39 |
]
|
40 |
DB_URI = config("DB_URI", default="")
|