Skip to content

Commit df6bcd6

Browse files
committed
Merge branch 'main' into good-bad-controls
2 parents 647f216 + 8a65dc8 commit df6bcd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/y0/dsl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,7 @@ def _iter_variables(self) -> Iterable[Variable]:
13321332
V1, V2, V3, V4, V5, V6 = [Variable(f"V{i}") for i in range(1, 7)]
13331333
W0, W1, W2, W3, W4, W5, W6 = [Variable(f"W{i}") for i in range(7)]
13341334
Y1, Y2, Y3, Y4, Y5, Y6 = [Variable(f"Y{i}") for i in range(1, 7)]
1335-
Z1, Z2, Z3, Z4, Z5, Z6 = [Z[i] for i in range(1, 7)]
1335+
Z1, Z2, Z3, Z4, Z5, Z6 = [Variable(f"Z{i}") for i in range(1, 7)]
13361336

13371337

13381338
def _sorted_variables(variables: Iterable[Variable]) -> Tuple[Variable, ...]:

0 commit comments

Comments
 (0)