(self)
| 31 | return self.sql |
| 32 | |
| 33 | def __repr__(self) -> str: |
| 34 | return f"SqlDefault({self.sql!r})" |
| 35 | |
| 36 | def __eq__(self, other: object) -> bool: |
| 37 | return isinstance(other, SqlDefault) and self.sql == other.sql |
nothing calls this directly
no outgoing calls
no test coverage detected