From 52952e6158d53856a3917df84477d4d4389ee1dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Mon, 15 May 2023 11:35:24 +0200 Subject: [PATCH] update week start --- hanyadikhetvan/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hanyadikhetvan/__init__.py b/hanyadikhetvan/__init__.py index 7d15c36..681a0a2 100644 --- a/hanyadikhetvan/__init__.py +++ b/hanyadikhetvan/__init__.py @@ -4,7 +4,7 @@ import azure.functions as func def main(req: func.HttpRequest) -> func.HttpResponse: - startdate = date(2022, 8, 29) + startdate = date(2023, 2, 20) currentweek = floor((date.today() - startdate).days / 7) return func.HttpResponse( str(currentweek),