Skip to content

Commit 6618673

Browse files
committed
🎉 please the linters
1 parent 3b33cdf commit 6618673

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

‎an_website/__main__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
import tracemalloc
2323
import warnings
2424

25-
from dill._dill import (
26-
PickleWarning, # type: ignore[import-untyped] # nosec: B403
25+
from dill._dill import ( # type: ignore[import-untyped] # isort: skip
26+
PickleWarning, # nosec: B403
2727
)
2828

2929
if sys.flags.dev_mode and not (

‎an_website/utils/base_request_handler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ def origin_trial(self, token: bytes | str) -> bool:
710710
@override
711711
async def prepare(self) -> None:
712712
"""Check authorization and call self.ratelimit()."""
713-
# pylint: disable=invalid-overridden-method, too-complex
713+
# pylint: disable=invalid-overridden-method
714714
self.now = await self.get_time()
715715

716716
if not self.ALLOW_COMPRESSION:

0 commit comments

Comments
 (0)