(self, value: Dict[str, _T])
| 207 | return ReadOnlyProperties(self._data) |
| 208 | |
| 209 | def update(self, value: Dict[str, _T]) -> None: |
| 210 | self._data.update(value) |
| 211 | |
| 212 | @overload |
| 213 | def get(self, key: str) -> Optional[_T]: ... |
no outgoing calls
no test coverage detected