Determines if the instance is in the future, ie. greater than now.
(self)
| 509 | return max((abs(self - dt), dt) for dt in pdts)[1] |
| 510 | |
| 511 | def is_future(self) -> bool: |
| 512 | """ |
| 513 | Determines if the instance is in the future, ie. greater than now. |
| 514 | """ |
| 515 | return self > self.now(self.timezone) |
| 516 | |
| 517 | def is_past(self) -> bool: |
| 518 | """ |