Skip to content

Commit 16a8142

Browse files
committed
hid list
1 parent be2b218 commit 16a8142

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

executorlib/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
SlurmJobExecutor,
1010
)
1111

12-
hdf_lst: list = []
12+
_hdf_lst: list = []
1313

1414
try:
1515
from executorlib.standalone.hdf import get_cache_data
1616
except ImportError:
1717
pass
1818
else:
19-
hdf_lst += [get_cache_data]
19+
_hdf_lst += [get_cache_data]
2020

2121
__version__ = _get_versions()["version"]
2222
__all__: list = [
@@ -25,4 +25,4 @@
2525
"SingleNodeExecutor",
2626
"SlurmJobExecutor",
2727
"SlurmClusterExecutor",
28-
] + hdf_lst
28+
] + _hdf_lst

0 commit comments

Comments
 (0)