fix with formatter

This commit is contained in:
grey-cat-1908 2022-05-14 17:38:52 +03:00
parent bbab69c800
commit 78745c3334
8 changed files with 12 additions and 10 deletions

View file

@ -74,7 +74,7 @@ class Client:
mobile: bool = False,
allowed_mentions: Optional[AllowedMentions] = None,
logs: Union[None, int, str, Dict[str, Any]] = "INFO",
cache: CacheManager = None
cache: CacheManager = None,
):
self._loop = asyncio.get_event_loop()

View file

@ -10,7 +10,7 @@ from ..utils.types import Coro
async def channel_create_listener(self, gateway, payload: dict):
channel = _choose_channel_type(payload)
await self.dispatch("on_channel_create", (channel, ))
await self.dispatch("on_channel_create", (channel,))
return

View file

@ -14,7 +14,7 @@ async def channel_delete_listener(self, gateway, payload: dict):
channel = channel_cls.from_dict(payload)
await self.dispatch("on_channel_delete", (channel, ))
await self.dispatch("on_channel_delete", (channel,))
return

View file

@ -18,7 +18,7 @@ async def guild_create_listener(self, gateway, payload: dict):
self.cache.set_guild(guild)
if guild_was_cached_as_none is False:
await self.dispatch("on_guild_create", (guild, ))
await self.dispatch("on_guild_create", (guild,))
return

View file

@ -15,7 +15,7 @@ async def guild_delete_listener(self, gateway, payload: dict):
self.cache.remove_guild(guild.id)
await self.dispatch("on_guild_remove", (guild, ))
await self.dispatch("on_guild_remove", (guild,))
return

View file

@ -9,7 +9,7 @@ from ..utils.types import Coro
async def message_create_listener(self, gateway, payload: dict):
message = Message.from_dict(payload)
await self.dispatch("on_message_create", (message, ))
await self.dispatch("on_message_create", (message,))
return

View file

@ -16,7 +16,7 @@ async def on_ready_listener(self, gateway, payload: dict):
self.user = User.from_dict(payload.get("user"))
await self.dispatch("on_shard_ready", (gateway.shard_id, ))
await self.dispatch("on_shard_ready", (gateway.shard_id,))
return

View file

@ -31,7 +31,7 @@ class CacheManager:
self,
*,
auto_models: Optional[List[AutoCacheModels]] = None,
auto_unused_attributes: Optional[Dict[Any, List[str]]] = None
auto_unused_attributes: Optional[Dict[Any, List[str]]] = None,
):
self._auto_models: List[AutoCacheModels] = (
[] if auto_models is None else auto_models
@ -98,7 +98,7 @@ class CacheManager:
if hasattr(guild, "channels"):
channels = guild.channels.values()
if not AutoCacheModels.TEXT_CHANNELS in self._auto_models:
if AutoCacheModels.TEXT_CHANNELS not in self._auto_models:
channels = filter(
lambda channel: channel.type != ChannelType.GUILD_TEXT, channels
)
@ -137,7 +137,9 @@ class CacheManager:
Data of guilds tso insert to the cache
"""
guilds_dict = dict(map(lambda i: (i["id"], UnavailableGuild.from_dict(i)), guilds))
guilds_dict = dict(
map(lambda i: (i["id"], UnavailableGuild.from_dict(i)), guilds)
)
self._raw_guilds.update(guilds_dict)
return None