Skip to content

Instantly share code, notes, and snippets.

@netletic
Created May 13, 2021 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save netletic/4c193070870be2e25ccc7144051e56f2 to your computer and use it in GitHub Desktop.
Save netletic/4c193070870be2e25ccc7144051e56f2 to your computer and use it in GitHub Desktop.
from datetime import datetime
from datetime import timedelta
def yesterday(asof: datetime) -> datetime:
return asof - timedelta(days=1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment