We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 452ab16 commit 75ff1dbCopy full SHA for 75ff1db
1 file changed
tests/eval_files/async104.py
@@ -1,4 +1,7 @@
1
# ARG --enable=ASYNC103,ASYNC104
2
+import sys
3
+
4
5
try:
6
...
7
# raise different exception
@@ -104,7 +107,8 @@ def foo2():
104
107
else:
105
108
return # type: ignore[unreachable] # error: 12
106
109
finally:
- return # error: 12
110
+ if sys.version_info < (3, 14):
111
+ return # error: 12
112
113
114
# don't avoid re-raise with continue/break
0 commit comments