From a006eb48dbc34dfbe7f185af5e9a8a835d72f356 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Wed, 8 Jun 2022 23:05:37 +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 3d5bc41..7d15c36 100644 --- a/api/hanyadikhetvan/__init__.py +++ b/api/hanyadikhetvan/__init__.py @@ -4,7 +4,7 @@ import azure.functions as func def main(req: func.HttpRequest) -> func.HttpResponse: - startdate = date(2022, 2, 7) + startdate = date(2022, 8, 29) currentweek = floor((date.today() - startdate).days / 7) return func.HttpResponse( str(currentweek),