(self)
| 1045 | self._data = data or {} |
| 1046 | |
| 1047 | def __len__(self) -> int: |
| 1048 | return len(self._data) |
| 1049 | |
| 1050 | def __getitem__(self, key: str) -> Any: |
| 1051 | return self._data.get(key, 0) |
nothing calls this directly
no outgoing calls
no test coverage detected