(self, value: str)
| 28 | |
| 29 | class Literal(Atom): |
| 30 | def __init__(self, value: str) -> None: |
| 31 | self.value = value |
| 32 | |
| 33 | def __repr__(self) -> str: |
| 34 | return f"Literal(value={self.value})" |
nothing calls this directly
no outgoing calls
no test coverage detected