From ccd94c90d33b7aee85117078576684fab5055ce5 Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Mon, 19 Feb 2024 21:35:56 +0000 Subject: ruff lint fix: Manual non-breaking changes --- pydis_core/_bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pydis_core/_bot.py') 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() -- cgit v1.2.3