Skip to content

Commit dc2cf80

Browse files
committed
Fix type ignore
1 parent 646bc53 commit dc2cf80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/builtins.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ class type:
192192
def __basicsize__(self) -> int: ...
193193
# type.__dict__ is read-only at runtime, but that can't be expressed currently.
194194
# See https://github.com/python/typeshed/issues/11033 for a discussion.
195-
__dict__: Final[types.MappingProxyType[str, Any]] # type: ignore[override]
195+
__dict__: Final[types.MappingProxyType[str, Any]] # type: ignore[assignment]
196196
@property
197197
def __dictoffset__(self) -> int: ...
198198
@property

0 commit comments

Comments
 (0)