(self)
| 311 | """ |
| 312 | |
| 313 | def __init__(self): |
| 314 | self._data: dict[str, _T] = {} |
| 315 | self._priority: list[_PriorityItem] = [] |
| 316 | self._is_sorted = False |
| 317 | |
| 318 | def __contains__(self, item: str | _T) -> bool: |
| 319 | if isinstance(item, str): |
nothing calls this directly
no outgoing calls
no test coverage detected