Skip to content

Commit 359a887

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 862c23e commit 359a887

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • src/executorlib/standalone

src/executorlib/standalone/hdf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ def load(file_name: str) -> dict:
6363
else:
6464
data_dict["kwargs"] = {}
6565
if "resource_dict" in hdf:
66-
data_dict["resource_dict"] = cloudpickle.loads(np.void(hdf["/resource_dict"]))
66+
data_dict["resource_dict"] = cloudpickle.loads(
67+
np.void(hdf["/resource_dict"])
68+
)
6769
else:
6870
data_dict["resource_dict"] = {}
6971
if "error_log_file" in hdf:

0 commit comments

Comments
 (0)