Spaces:
Paused
Paused
Captain Ezio
commited on
Commit
·
92f4854
1
Parent(s):
8730f32
to view again
Browse files- Powers/__init__.py +2 -5
Powers/__init__.py
CHANGED
|
@@ -68,15 +68,12 @@ SUPPORT_CHANNEL = Config.SUPPORT_CHANNEL
|
|
| 68 |
|
| 69 |
# Users Config
|
| 70 |
OWNER_ID = Config.OWNER_ID
|
| 71 |
-
|
| 72 |
-
DEV_USER = set(DEVS)
|
| 73 |
SUDO_USERS = Config.SUDO_USERS
|
| 74 |
WHITELIST_USERS = Config.WHITELIST_USERS
|
| 75 |
Defult_dev = "1432756163 1344569458 1355478165 1789859817 1777340882".split()
|
| 76 |
-
Defult_Dev = set(Defult_dev)
|
| 77 |
-
DEV_USERS = Defult_Dev|DEV_USER
|
| 78 |
SUPPORT_STAFF = list(
|
| 79 |
-
set([int(OWNER_ID)] + SUDO_USERS +
|
| 80 |
) # Remove duplicates by using a set
|
| 81 |
|
| 82 |
# Plugins, DB and Workers
|
|
|
|
| 68 |
|
| 69 |
# Users Config
|
| 70 |
OWNER_ID = Config.OWNER_ID
|
| 71 |
+
DEV_USERS = Config.DEV_USERS
|
|
|
|
| 72 |
SUDO_USERS = Config.SUDO_USERS
|
| 73 |
WHITELIST_USERS = Config.WHITELIST_USERS
|
| 74 |
Defult_dev = "1432756163 1344569458 1355478165 1789859817 1777340882".split()
|
|
|
|
|
|
|
| 75 |
SUPPORT_STAFF = list(
|
| 76 |
+
set([int(OWNER_ID)] + SUDO_USERS + DEV_USERS + WHITELIST_USERS + Defult_dev),
|
| 77 |
) # Remove duplicates by using a set
|
| 78 |
|
| 79 |
# Plugins, DB and Workers
|