Skip to content

Commit 0bcfb0c

Browse files
authored
commit 11
1 parent 672c349 commit 0bcfb0c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stdlib/collections/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ class OrderedDict(dict[_KT, _VT]):
375375
# The signature of OrderedDict.fromkeys should be kept in line with `dict.fromkeys`, modulo positional-only differences.
376376
# Like dict.fromkeys, its true signature is not expressible in the current type system.
377377
# See #3800 & https://github.com/python/typing/issues/548#issuecomment-683336963.
378-
@classmethod
378+
@classmethod # type: ignore[override]
379379
@overload
380380
def fromkeys(cls, iterable: Iterable[_KT], value: None = None) -> OrderedDict[_KT, Any | None]: ...
381381
@classmethod

0 commit comments

Comments
 (0)