Skip to content

Commit

Permalink
Update mypy/stubdoc.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra authored Nov 27, 2023
1 parent e432e5c commit d8e7460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypy/stubdoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ArgSig:
"""Signature info for a single argument."""

def __init__(
self, name: str, type: str | None = None, default: bool = False, default_value: str = "..."
self, name: str, type: str | None = None, *, default: bool = False, default_value: str = "..."
) -> None:
self.name = name
self.type = type
Expand Down

0 comments on commit d8e7460

Please sign in to comment.