Skip to content

Commit 26cd5f3

Browse files
committed
shorten long lines
1 parent 3e02e8a commit 26cd5f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pyjuice/nodes/construction.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ def multiply(nodes1: ProdNodesChs, *args, edge_ids: Optional[Tensor] = None, spa
6969
return ProdNodes(num_node_groups, chs, edge_ids, group_size = group_size, **kwargs)
7070

7171

72-
def summate(nodes1: SumNodesChs, *args, num_nodes: int = 0, num_node_groups: int = 0, edge_ids: Optional[Tensor] = None, group_size: int = 0, **kwargs):
72+
def summate(nodes1: SumNodesChs, *args, num_nodes: int = 0, num_node_groups: int = 0,
73+
edge_ids: Optional[Tensor] = None, group_size: int = 0, **kwargs):
7374

7475
if num_nodes > 0:
7576
assert num_node_groups == 0, "Only one of `num_nodes` and `num_node_groups` can be set at the same time."

0 commit comments

Comments
 (0)