Skip to content

Commit eb6a4a3

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

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

executorlib/cache/hdf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ def dump(file_name: str, data_dict: dict) -> None:
2424
if data_key in group_dict.keys():
2525
fname.create_dataset(
2626
name="/" + group_dict[data_key],
27-
data=np.void(cloudpickle.dumps(data_value))
27+
data=np.void(cloudpickle.dumps(data_value)),
2828
)
2929

30+
3031
def load(file_name: str) -> dict:
3132
"""
3233
Load data dictionary from HDF5 file

0 commit comments

Comments
 (0)