Browse Source

Type hint channel.py

pull/7132/head
Rapptz 4 years ago
parent
commit
2beee8be14
  1. 498
      discord/channel.py
  2. 2
      discord/guild.py

498
discord/channel.py

File diff suppressed because it is too large

2
discord/guild.py

@ -461,7 +461,7 @@ class Guild(Hashable):
for c in channels:
factory, ch_type = _guild_channel_factory(c['type'])
if factory:
self._add_channel(factory(guild=self, data=c, state=self._state))
self._add_channel(factory(guild=self, data=c, state=self._state)) # type: ignore
if 'threads' in data:
threads = data['threads']

Loading…
Cancel
Save