(self, other)
| 2027 | return self.amount > other.as_currency(self.currency).amount |
| 2028 | |
| 2029 | def __eq__(self, other): |
| 2030 | return self.amount == other.as_currency(self.currency).amount |
| 2031 | |
| 2032 | def as_currency(self, other_currency): |
| 2033 | return Amount( |
nothing calls this directly
no test coverage detected