fix(backend): remove a bunch of debugging stuff
Some checks failed
Publish docker image / Publish (push) Failing after 1m3s
Some checks failed
Publish docker image / Publish (push) Failing after 1m3s
This commit is contained in:
parent
f5569700ed
commit
4b8bb59bf3
2 changed files with 2 additions and 3 deletions
|
@ -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')
|
||||
|
|
|
@ -56,7 +56,7 @@ def current_codes(db: sqlite3.Cursor=Depends(get_db)):
|
|||
'codes': codes,
|
||||
})
|
||||
return {
|
||||
'activities': ret * 30,
|
||||
'activities': ret,
|
||||
}
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue