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 98a3b52 commit a4e8361Copy full SHA for a4e8361
doc/data/messages/m/missing-param-type-annotation/bad.py
@@ -2,9 +2,9 @@ def greet(name): # [missing-param-type-annotation]
2
return f"Hello, {name}!"
3
4
5
-def add(x, y) -> int: # [missing-param-type-annotation]
+def add(x, y) -> int: # [missing-param-type-annotation, missing-param-type-annotation]
6
return x + y
7
8
9
-def process(*args, **kwargs): # [missing-param-type-annotation]
+def process(*args, **kwargs): # [missing-param-type-annotation, missing-param-type-annotation]
10
return combine(args, kwargs)
0 commit comments