update week start
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Torma Kristóf 2023-05-15 11:35:24 +02:00
parent c1bb9fce4f
commit 52952e6158

View File

@ -4,7 +4,7 @@ import azure.functions as func
def main(req: func.HttpRequest) -> func.HttpResponse: def main(req: func.HttpRequest) -> func.HttpResponse:
startdate = date(2022, 8, 29) startdate = date(2023, 2, 20)
currentweek = floor((date.today() - startdate).days / 7) currentweek = floor((date.today() - startdate).days / 7)
return func.HttpResponse( return func.HttpResponse(
str(currentweek), str(currentweek),