From 6531b1b55f092ad0ec261b8424156467e2608100 Mon Sep 17 00:00:00 2001 From: Joshix Date: Sat, 22 Jun 2024 18:00:00 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20improve=20comments?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- an_website/backdoor_client.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/an_website/backdoor_client.py b/an_website/backdoor_client.py index 4f98f2496..6909d4b64 100755 --- a/an_website/backdoor_client.py +++ b/an_website/backdoor_client.py @@ -433,10 +433,9 @@ async def run_shell_50821273052022fbc283(): def main() -> int | str: # noqa: C901 """Parse arguments, load the config and start the backdoor client.""" - # pylint: disable=too-complex, too-many-branches - # pylint: disable=too-many-locals, too-many-statements - # pylint: disable=import-outside-toplevel, import-error, useless-suppression - from pyrepl.python_reader import ( # type: ignore[import, unused-ignore] # isort: skip # noqa: B950 + # pylint: disable=import-outside-toplevel, too-complex + # pylint: disable=too-many-branches, too-many-locals, too-many-statements + from pyrepl.python_reader import ( # type: ignore[import-untyped] # isort: skip ReaderConsole, main as _main, )