Gives the duration of the Interval in full months.
(self)
| 227 | return self.years |
| 228 | |
| 229 | def in_months(self) -> int: |
| 230 | """ |
| 231 | Gives the duration of the Interval in full months. |
| 232 | """ |
| 233 | return self.years * MONTHS_PER_YEAR + self.months |
| 234 | |
| 235 | def in_weeks(self) -> int: |
| 236 | days = self.in_days() |
no outgoing calls