Skip to content

Commit 2acc1a1

Browse files
committed
mypy
1 parent 7e837a3 commit 2acc1a1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

qualtran/l1/_parse_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
import io
1616
import sys
17+
from typing import Any
1718

1819
import pytest
1920

@@ -229,7 +230,7 @@ def test_parse_nested():
229230
ast = parser.parse_cvalue()
230231
result = eval_cvalue_node(ast)
231232

232-
should_be = 5
233+
should_be: Any = 5
233234
for i in range(n):
234235
should_be = (should_be,)
235236
assert result == should_be

0 commit comments

Comments
 (0)