(self)
| 31 | self.value = value |
| 32 | |
| 33 | def __repr__(self) -> str: |
| 34 | return f"Literal(value={self.value})" |
| 35 | |
| 36 | def __eq__(self, other: object) -> bool: |
| 37 | if not isinstance(other, self.__class__): |
nothing calls this directly
no outgoing calls
no test coverage detected