aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_core/_bot.py
diff options
context:
space:
mode:
Diffstat (limited to 'pydis_core/_bot.py')
-rw-r--r--pydis_core/_bot.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pydis_core/_bot.py b/pydis_core/_bot.py
index 56cedb28..365b67b3 100644
--- a/pydis_core/_bot.py
+++ b/pydis_core/_bot.py
@@ -286,7 +286,7 @@ class BotBase(commands.Bot):
try:
await self.ping_services()
- except Exception as e:
+ except Exception as e: # noqa: BLE001
raise StartupError(e)
async def ping_services(self) -> None:
@@ -319,7 +319,7 @@ class BotBase(commands.Bot):
await self._resolver.close()
if getattr(self.stats, "_transport", False):
- self.stats._transport.close()
+ self.stats._transport.close() # noqa: SLF001
if self._statsd_timerhandle:
self._statsd_timerhandle.cancel()