We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be2b218 commit 16a8142Copy full SHA for 16a8142
executorlib/__init__.py
@@ -9,14 +9,14 @@
9
SlurmJobExecutor,
10
)
11
12
-hdf_lst: list = []
+_hdf_lst: list = []
13
14
try:
15
from executorlib.standalone.hdf import get_cache_data
16
except ImportError:
17
pass
18
else:
19
- hdf_lst += [get_cache_data]
+ _hdf_lst += [get_cache_data]
20
21
__version__ = _get_versions()["version"]
22
__all__: list = [
@@ -25,4 +25,4 @@
25
"SingleNodeExecutor",
26
"SlurmJobExecutor",
27
"SlurmClusterExecutor",
28
-] + hdf_lst
+] + _hdf_lst
0 commit comments