From: Oleg Broytman Date: Mon, 20 Nov 2023 00:38:00 +0000 (+0300) Subject: Style: Fix `flake8` E402 module level import not at top of file X-Git-Tag: 5.0.0~14 X-Git-Url: https://git.phdru.name/?p=bookmarks_db.git;a=commitdiff_plain;h=8c78e35e801dce4703087810f8fbd1036c68df97 Style: Fix `flake8` E402 module level import not at top of file --- diff --git a/Robots/bkmk_rforking_sub.py b/Robots/bkmk_rforking_sub.py index 3c68469..7892407 100755 --- a/Robots/bkmk_rforking_sub.py +++ b/Robots/bkmk_rforking_sub.py @@ -24,7 +24,7 @@ except ImportError: lib_dir = os.path.normpath(os.path.dirname(os.path.dirname(sys.argv[0]))) sys.path.append(lib_dir) # for bkmk_objects.py -from subproc import RecordFile +from subproc import RecordFile # noqa: E402 import not at top of file def run():