aci/backend/aci/utils.py
Ashhhleyyy 4b8bb59bf3
Some checks failed
Publish docker image / Publish (push) Failing after 1m3s
fix(backend): remove a bunch of debugging stuff
2024-02-18 12:48:21 +00:00

6 lines
177 B
Python

#!/usr/bin/env python3
from datetime import datetime
def today() -> str:
now = datetime.now()
return now.strftime('%A') + ' ' + str(now.day) + ' ' + now.strftime('%B')