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 6e8c0cd commit 4956514Copy full SHA for 4956514
mypy/stubdoc.py
@@ -235,7 +235,7 @@ def is_unique_args(sig: FunctionSig) -> bool:
235
"""return true if function argument names are unique"""
236
return len(sig.args) == len(set((arg.name for arg in sig.args)))
237
238
- # Return only signatures that have unique argument names. Mypy fails on non-uniqnue arg names.
+ # Return only signatures that have unique argument names. Mypy fails on non-unique arg names.
239
return [sig for sig in sigs if is_unique_args(sig)]
240
241
0 commit comments