Skip to content

Commit a62a906

Browse files
committed
Fix CI failure from merge race
1 parent b060c2d commit a62a906

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mypyc/test-data/run-async.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1493,7 +1493,7 @@ class T:
14931493
return 3
14941494

14951495
def is_coroutine(fn):
1496-
if sys.version_info >= (3, 10):
1496+
if sys.version_info >= (3, 10): # type: ignore[operator]
14971497
return inspect.iscoroutinefunction(fn)
14981498

14991499
# inspect on older python versions does not support function-like objects.

0 commit comments

Comments
 (0)