Skip to content

Commit 87c2d55

Browse files
fix type error
1 parent 905bc9a commit 87c2d55

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
@@ -548,7 +548,7 @@ def f(x: T) -> T: ...
548548
with egraph:
549549

550550
@function
551-
def f(x: T, y: T) -> T: ...
551+
def f(x: T, y: T) -> T: ... # type: ignore[misc]
552552

553553
egraph.register(f(T(1), T(2))) # type: ignore[call-arg]
554554

0 commit comments

Comments
 (0)