Skip to content

Commit 5d246e8

Browse files
committed
[Lint] run pre-commit for PR#113
1 parent e106d09 commit 5d246e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qonnx/transformation/create_generic_partitions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def partitioning_func(node):
202202
if len(candidates) == 0:
203203
return -1
204204
assert len(candidates) == 1, f"single node assigned to multiple partitions: {candidates}"
205-
return candidates[0][0] # partition_id
205+
return candidates[0][0] # partition_id
206206

207207
# apply partitioning
208208
model = model.transform(PartitionFromLambda(partitioning_func, self.partition_dir))

0 commit comments

Comments
 (0)