MCPcopy Index your code
hub / github.com/python-pendulum/pendulum / tomorrow

Function tomorrow

src/pendulum/__init__.py:256–260  ·  view source on GitHub ↗

Create a DateTime instance for tomorrow.

(tz: str | Timezone = "local")

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

todayFunction · 0.70
addMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…