Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 15, 2024
1 parent 1e23191 commit cee811e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/test_cache_hdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,12 @@ def test_hdf_kwargs(self):
b = 2
dump(
file_name=file_name,
data_dict={"fn": my_funct, "args": (), "kwargs": {"a": a, "b": b}, "queue_id": 123},
data_dict={
"fn": my_funct,
"args": (),
"kwargs": {"a": a, "b": b},
"queue_id": 123,
},
)
data_dict = load(file_name=file_name)
self.assertTrue("fn" in data_dict.keys())
Expand Down

0 comments on commit cee811e

Please sign in to comment.