Determines if the instance is in the future, ie. greater than now.
(self)
| 132 | return dt2 |
| 133 | |
| 134 | def is_future(self) -> bool: |
| 135 | """ |
| 136 | Determines if the instance is in the future, ie. greater than now. |
| 137 | """ |
| 138 | return self > self.today() |
| 139 | |
| 140 | def is_past(self) -> bool: |
| 141 | """ |