Skip to content

Commit d531fe6

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/tests/test_high_level.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ def incr(x: Math) -> None: ...
344344
assert str(x) == "_Math_1 = Math(10)\nincr(_Math_1)\n_Math_1"
345345
assert str(x + Math(10)) == "_Math_1 = Math(10)\nincr(_Math_1)\n_Math_1 + Math(10)"
346346

347-
i, j = vars_("i j", Math)
347+
i, _j = vars_("i j", Math)
348348
incr_i = copy(i)
349349
incr(incr_i)
350350
egraph.register(rewrite(incr_i).to(i + Math(1)), x)

0 commit comments

Comments
 (0)