Skip to content

Commit

Permalink
CallableType.copy_modified: arg_name is sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
ikonst committed Jan 27, 2023
1 parent 87a4c0b commit 0976f86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypy/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1771,7 +1771,7 @@ def copy_modified(
self: CT,
arg_types: Bogus[Sequence[Type]] = _dummy,
arg_kinds: Bogus[list[ArgKind]] = _dummy,
arg_names: Bogus[list[str | None]] = _dummy,
arg_names: Bogus[Sequence[str | None]] = _dummy,
ret_type: Bogus[Type] = _dummy,
fallback: Bogus[Instance] = _dummy,
name: Bogus[str | None] = _dummy,
Expand Down

0 comments on commit 0976f86

Please sign in to comment.