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 5cccf9a commit a43f1c8Copy full SHA for a43f1c8
docs/source/cheat_sheet_py3.rst
@@ -126,7 +126,7 @@ Functions
126
quux(3, 5) # error: Too many positional arguments for "quux"
127
quux(x=3, y=5) # error: Unexpected keyword argument "x" for "quux"
128
129
- # This says each positional arg and each keyword arg a "str"
+ # This says each positional arg and each keyword arg is a "str"
130
def call(self, *args: str, **kwargs: str) -> str:
131
reveal_type(args) # Revealed type is "tuple[str, ...]"
132
reveal_type(kwargs) # Revealed type is "dict[str, str]"
0 commit comments