(self, other)
| 2009 | self.amount = amount |
| 2010 | |
| 2011 | def __add__(self, other): |
| 2012 | return Amount( |
| 2013 | self.amount + other.as_currency(self.currency).amount, |
| 2014 | self.currency, |
| 2015 | ) |
| 2016 | |
| 2017 | def __sub__(self, other): |
| 2018 | return Amount( |
nothing calls this directly
no test coverage detected