( # type: ignore[override]
self, __value: Mapping[_KT, _VT], /
)
| 226 | _immutable_fn(self) |
| 227 | |
| 228 | def __or__( # type: ignore[override] |
| 229 | self, __value: Mapping[_KT, _VT], / |
| 230 | ) -> immutabledict[_KT, _VT]: |
| 231 | return immutabledict( |
| 232 | dict.__or__(self, __value), # type: ignore[call-overload,operator,unused-ignore] # noqa: E501 |
| 233 | ) |
| 234 | |
| 235 | def __ror__( # type: ignore[override] |
| 236 | self, __value: Mapping[_KT, _VT], / |
nothing calls this directly
no test coverage detected