Skip to content

Commit 6617f12

Browse files
committed
Formatting
1 parent 05051fe commit 6617f12

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

pyfaasm/pyfaasm/matrix.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,7 @@ def chain_multiplications(conf, split_level, row_a, col_a, row_b, col_b):
223223
)
224224

225225
call_ids.append(
226-
chain(
227-
distributed_divide_and_conquer, inputs_a.tobytes()
228-
)
226+
chain(distributed_divide_and_conquer, inputs_a.tobytes())
229227
)
230228

231229
# Await completion

tasks/container.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,12 @@ def build(ctx, nocache=False, push=False):
2626
Build current version of the cpython container
2727
"""
2828
build_container(
29-
_get_tag(), DOCKERFILE, PROJ_ROOT, nocache=nocache, push=push,
30-
build_args={"FAASM_CPYTHON_VERSION": get_version()}
29+
_get_tag(),
30+
DOCKERFILE,
31+
PROJ_ROOT,
32+
nocache=nocache,
33+
push=push,
34+
build_args={"FAASM_CPYTHON_VERSION": get_version()},
3135
)
3236

3337

0 commit comments

Comments
 (0)