Skip to content

Commit 249aace

Browse files
committed
fix doc issue
Signed-off-by: Alvaro Frias <[email protected]>
1 parent 74eb013 commit 249aace

File tree

1 file changed

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

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@ def add(x, y) -> int: # [missing-param-type-annotation, missing-param-type-anno
66
return x + y
77

88

9-
def process(*args, **kwargs) -> dict: # [missing-param-type-annotation, missing-param-type-annotation]
9+
def process( # [missing-param-type-annotation, missing-param-type-annotation]
10+
*args, **kwargs
11+
) -> dict:
1012
return combine(args, kwargs)

0 commit comments

Comments
 (0)