File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change 21
21
"username" : "Luca" ,
22
22
"date" : "2017-04-26T18:08:17.125Z" ,
23
23
"server_count" : 2 ,
24
- "guilds" : ["417723229721853963" , "264445053596991498" ],
25
24
"monthlyPoints" : 19 ,
26
25
"points" : 397 ,
27
26
"owners" : ["129908908096487424" ],
Original file line number Diff line number Diff line change @@ -94,8 +94,6 @@ def parse_bot_dict(d: dict) -> dict:
94
94
95
95
if data .get ("owners" ):
96
96
data ["owners" ] = [int (e ) for e in data ["owners" ]]
97
- if data .get ("guilds" ):
98
- data ["guilds" ] = [int (e ) for e in data ["guilds" ]]
99
97
100
98
for key , value in data .copy ().items ():
101
99
converted_key = camel_to_snake (key )
@@ -239,9 +237,6 @@ class BotData(DataDict[str, t.Any]):
239
237
owners : t .List [int ]
240
238
"""The IDs of the owners of the bot."""
241
239
242
- guilds : t .List [int ]
243
- """The guilds the bot is in."""
244
-
245
240
invite : t .Optional [str ]
246
241
"""The invite URL of the bot."""
247
242
You can’t perform that action at this time.
0 commit comments