Skip to content

Commit 9bb18a0

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

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

executorlib/standalone/serialize.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,12 @@ def serialize_funct_h5(
6969
task_key = cache_key
7070
else:
7171
binary_all = cloudpickle.dumps(
72-
{"fn": fn, "args": fn_args, "kwargs": fn_kwargs, "resource_dict": resource_dict}
72+
{
73+
"fn": fn,
74+
"args": fn_args,
75+
"kwargs": fn_kwargs,
76+
"resource_dict": resource_dict,
77+
}
7378
)
7479
task_key = fn.__name__ + _get_hash(binary=binary_all)
7580
data = {

0 commit comments

Comments
 (0)