(self)
| 59 | return (self.name, self.default) == (other.name, other.default) |
| 60 | |
| 61 | def __hash__(self) -> int: |
| 62 | return hash((self.__class__, self.name, self.default)) |
| 63 | |
| 64 | def resolve(self, env: Mapping[str, Optional[str]]) -> str: |
| 65 | default = self.default if self.default is not None else "" |
nothing calls this directly
no outgoing calls
no test coverage detected