(self)
| 39 | return self.value == other.value |
| 40 | |
| 41 | def __hash__(self) -> int: |
| 42 | return hash((self.__class__, self.value)) |
| 43 | |
| 44 | def resolve(self, env: Mapping[str, Optional[str]]) -> str: |
| 45 | return self.value |
nothing calls this directly
no outgoing calls
no test coverage detected