( # type: ignore[override]
self, __value: Mapping[_KT, _VT], /
)
| 233 | ) |
| 234 | |
| 235 | def __ror__( # type: ignore[override] |
| 236 | self, __value: Mapping[_KT, _VT], / |
| 237 | ) -> immutabledict[_KT, _VT]: |
| 238 | return immutabledict( |
| 239 | dict.__ror__(self, __value), # type: ignore[call-overload,operator,unused-ignore] # noqa: E501 |
| 240 | ) |
nothing calls this directly
no test coverage detected