Code sample in pyright playground
class FooMetaclass(type): ...
class Foo(metaclass=FooMetaclass): ...
# Cannot access attribute "update" for class "MappingProxyType[str, Any]"
# Attribute "update" is unknown (reportAttributeAccessIssue)
Foo().__dict__.update(a=1)
this works at runtime, and was not a type error prior to pyright 1.1.408 (which introduced #14951)