Create a DateTime instance for tomorrow.
(tz: str | Timezone = "local")
| 254 | |
| 255 | |
| 256 | def tomorrow(tz: str | Timezone = "local") -> DateTime: |
| 257 | """ |
| 258 | Create a DateTime instance for tomorrow. |
| 259 | """ |
| 260 | return today(tz).add(days=1) |
| 261 | |
| 262 | |
| 263 | def yesterday(tz: str | Timezone = "local") -> DateTime: |