File tree 1 file changed +5
-6
lines changed
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 14
14
15
15
from genie_python .genie_api_setup import __api as _genie_api
16
16
17
- os .environ ["EPICS_CA_MAX_ARRAY_BYTES" ] = "20000000"
18
17
os .environ ["FROM_IBEX" ] = str (False )
19
18
20
19
# for user import this functionality so they can do g.adv and g.sim
24
23
import genie_python .genie_toggle_settings as toggle # noqa F401
25
24
26
25
# Import required for g.my_pv_prefix
27
- from genie_python .genie_api_setup import (
26
+ from genie_python .genie_api_setup import ( # noqa E402
28
27
get_user_script_dir ,
29
28
helparglist ,
30
29
log_command_and_handle_exception ,
31
30
my_pv_prefix , # noqa F401
32
31
set_user_script_dir ,
33
32
usercommand ,
34
33
)
35
- from genie_python .genie_script_checker import ScriptChecker
36
- from genie_python .genie_toggle_settings import ToggleSettings
37
- from genie_python .utilities import (
34
+ from genie_python .genie_script_checker import ScriptChecker # noqa E402
35
+ from genie_python .genie_toggle_settings import ToggleSettings # noqa E402
36
+ from genie_python .utilities import ( # noqa E402
38
37
EnvironmentDetails ,
39
38
check_lowlimit_against_highlimit ,
40
39
get_correct_filepath_existing ,
41
40
get_correct_path ,
42
41
)
43
- from genie_python .version import VERSION
42
+ from genie_python .version import VERSION # noqa E402
44
43
45
44
PVBaseValue = bool | int | float | str
46
45
PVValue = PVBaseValue | list [PVBaseValue ] | npt .NDArray | None
You can’t perform that action at this time.
0 commit comments