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 5c8534b commit 8afa534Copy full SHA for 8afa534
1 file changed
test-data/unit/check-fastparse.test
@@ -186,7 +186,7 @@ f()
186
f(1) # E: Too many arguments for "f"
187
188
[case testFasterParseTooFewArgumentsAnnotation]
189
-def f(x, y): # E: Type signature has too few arguments
+def f(x, y): # E: Type signature has too few parameters
190
# type: (int) -> None
191
x()
192
y()
@@ -215,7 +215,7 @@ x @ 1
215
x @= 1
216
217
[case testFastParserShowsMultipleErrors]
218
-def f(x): # E: Type signature has too few arguments
+def f(x): # E: Type signature has too few parameters
219
# type: () -> None
220
pass
221
def g(): # E: Type signature has too many parameters
0 commit comments