(self)
| 51 | self.default = default |
| 52 | |
| 53 | def __repr__(self) -> str: |
| 54 | return f"Variable(name={self.name}, default={self.default})" |
| 55 | |
| 56 | def __eq__(self, other: object) -> bool: |
| 57 | if not isinstance(other, self.__class__): |
nothing calls this directly
no outgoing calls
no test coverage detected