Skip to content

Commit a43f1c8

Browse files
committed
typo
1 parent 5cccf9a commit a43f1c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/cheat_sheet_py3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Functions
126126
quux(3, 5) # error: Too many positional arguments for "quux"
127127
quux(x=3, y=5) # error: Unexpected keyword argument "x" for "quux"
128128
129-
# This says each positional arg and each keyword arg a "str"
129+
# This says each positional arg and each keyword arg is a "str"
130130
def call(self, *args: str, **kwargs: str) -> str:
131131
reveal_type(args) # Revealed type is "tuple[str, ...]"
132132
reveal_type(kwargs) # Revealed type is "dict[str, str]"

0 commit comments

Comments
 (0)