(self, attributes: Dict[Any, Any], key: Any)
| 244 | return False |
| 245 | |
| 246 | def contains(self, attributes: Dict[Any, Any], key: Any) -> bool: |
| 247 | return (key, self.path) in attributes |
| 248 | |
| 249 | def __reduce__(self) -> Any: |
| 250 | return _unreduce_path, (self.serialize(),) |
no outgoing calls
no test coverage detected