Skip to content

Commit 4956514

Browse files
committed
[stubdoc] fix typo
1 parent 6e8c0cd commit 4956514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/stubdoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def is_unique_args(sig: FunctionSig) -> bool:
235235
"""return true if function argument names are unique"""
236236
return len(sig.args) == len(set((arg.name for arg in sig.args)))
237237

238-
# Return only signatures that have unique argument names. Mypy fails on non-uniqnue arg names.
238+
# Return only signatures that have unique argument names. Mypy fails on non-unique arg names.
239239
return [sig for sig in sigs if is_unique_args(sig)]
240240

241241

0 commit comments

Comments
 (0)