(
self, instance: None, owner: type
)
| 147 | |
| 148 | @t.overload |
| 149 | def __get__( |
| 150 | self, instance: None, owner: type |
| 151 | ) -> _DictAccessorProperty[_TAccessorValue]: ... |
| 152 | |
| 153 | @t.overload |
| 154 | def __get__(self, instance: t.Any, owner: type) -> _TAccessorValue: ... |