Skip to content

Commit c6f4329

Browse files
committed
add noqas to ignore import order
1 parent b21c39e commit c6f4329

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/genie_python/genie.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,23 @@
2727
import genie_python.genie_toggle_settings as toggle # noqa F401
2828

2929
# Import required for g.my_pv_prefix
30-
from genie_python.genie_api_setup import (
30+
from genie_python.genie_api_setup import ( # noqa E402
3131
get_user_script_dir,
3232
helparglist,
3333
log_command_and_handle_exception,
3434
my_pv_prefix, # noqa F401
3535
set_user_script_dir,
3636
usercommand,
3737
)
38-
from genie_python.genie_script_checker import ScriptChecker
39-
from genie_python.genie_toggle_settings import ToggleSettings
40-
from genie_python.utilities import (
38+
from genie_python.genie_script_checker import ScriptChecker # noqa E402
39+
from genie_python.genie_toggle_settings import ToggleSettings # noqa E402
40+
from genie_python.utilities import ( # noqa E402
4141
EnvironmentDetails,
4242
check_lowlimit_against_highlimit,
4343
get_correct_filepath_existing,
4444
get_correct_path,
4545
)
46-
from genie_python.version import VERSION
46+
from genie_python.version import VERSION # noqa E402
4747

4848
PVBaseValue = bool | int | float | str
4949
PVValue = PVBaseValue | list[PVBaseValue] | npt.NDArray | None

0 commit comments

Comments
 (0)