update week start
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Torma Kristóf 2023-05-15 11:35:16 +02:00
parent ae8c21fcab
commit c915a5feea

View File

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