From c915a5feeabc603e25f5188285ceb5e7fb04e8ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Mon, 15 May 2023 11:35:16 +0200 Subject: [PATCH] update week start --- api/hanyadikhetvan/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/hanyadikhetvan/__init__.py b/api/hanyadikhetvan/__init__.py index 9cd37c2..83dbf12 100644 --- a/api/hanyadikhetvan/__init__.py +++ b/api/hanyadikhetvan/__init__.py @@ -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),