Skip to content

Commit a4e8361

Browse files
committed
update docs
Signed-off-by: Alvaro Frias <[email protected]>
1 parent 98a3b52 commit a4e8361

File tree

1 file changed

+2
-2
lines changed
  • doc/data/messages/m/missing-param-type-annotation

1 file changed

+2
-2
lines changed

doc/data/messages/m/missing-param-type-annotation/bad.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ def greet(name): # [missing-param-type-annotation]
22
return f"Hello, {name}!"
33

44

5-
def add(x, y) -> int: # [missing-param-type-annotation]
5+
def add(x, y) -> int: # [missing-param-type-annotation, missing-param-type-annotation]
66
return x + y
77

88

9-
def process(*args, **kwargs): # [missing-param-type-annotation]
9+
def process(*args, **kwargs): # [missing-param-type-annotation, missing-param-type-annotation]
1010
return combine(args, kwargs)

0 commit comments

Comments
 (0)