(self, *args, **kwargs)
| 171 | """ |
| 172 | |
| 173 | def __init__(self, *args, **kwargs): |
| 174 | super().__init__(*args, **kwargs) |
| 175 | |
| 176 | def get(self, key, default=None): |
| 177 | if key not in self: |
nothing calls this directly
no outgoing calls
no test coverage detected