fix(repo): ruff fixes / removing pylint exceptions
This commit is contained in:
parent
e34d621e6d
commit
858a1bae8a
12 changed files with 51 additions and 56 deletions
|
@ -84,7 +84,7 @@ class Aurora(commands.Cog):
|
|||
self.bot = bot
|
||||
register_config(config)
|
||||
disable_dateutil()
|
||||
self.handle_expiry.start() # pylint: disable=no-member
|
||||
self.handle_expiry.start()
|
||||
|
||||
async def cog_load(self):
|
||||
"""This method prepares the database schema for all of the guilds the bot is currently in."""
|
||||
|
@ -99,7 +99,7 @@ class Aurora(commands.Cog):
|
|||
return
|
||||
|
||||
async def cog_unload(self):
|
||||
self.handle_expiry.cancel() # pylint: disable=no-member
|
||||
self.handle_expiry.cancel()
|
||||
|
||||
@commands.Cog.listener("on_guild_join")
|
||||
async def db_generate_guild_join(self, guild: discord.Guild):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue