fix(backend): remove a bunch of debugging stuff
Some checks failed
Publish docker image / Publish (push) Failing after 1m3s

This commit is contained in:
Ashhhleyyy 2024-02-18 12:48:21 +00:00
parent f5569700ed
commit 4b8bb59bf3
Signed by: ash
GPG key ID: 83B789081A0878FB
2 changed files with 2 additions and 3 deletions

View file

@ -3,5 +3,4 @@ from datetime import datetime
def today() -> str:
now = datetime.now()
#return now.strftime('%A') + ' ' + str(now.day) + ' ' + now.strftime('%B')
return 'Friday 16 February'
return now.strftime('%A') + ' ' + str(now.day) + ' ' + now.strftime('%B')

View file

@ -56,7 +56,7 @@ def current_codes(db: sqlite3.Cursor=Depends(get_db)):
'codes': codes,
})
return {
'activities': ret * 30,
'activities': ret,
}
if __name__ == '__main__':