Return whether two access paths are not equal.
(self, other: Any)
| 129 | return self._path_equal(other) |
| 130 | |
| 131 | def __ne__(self, other: Any) -> bool: |
| 132 | """Return whether two access paths are not equal.""" |
| 133 | if not isinstance(other, AccessPath): |
| 134 | return True |
| 135 | return not self._path_equal(other) |
| 136 | |
| 137 | def is_prefix_of(self, other: AccessPath) -> bool: |
| 138 | """Check if this access path is a prefix of another access path. |
nothing calls this directly
no test coverage detected