Gives the duration of the Interval in full years.
(self)
| 221 | return self._end |
| 222 | |
| 223 | def in_years(self) -> int: |
| 224 | """ |
| 225 | Gives the duration of the Interval in full years. |
| 226 | """ |
| 227 | return self.years |
| 228 | |
| 229 | def in_months(self) -> int: |
| 230 | """ |
no outgoing calls