From a851147b69ece308ae128971fd27e3d97b7e6f71 Mon Sep 17 00:00:00 2001 From: Pritimay Sarkar Date: Mon, 19 Feb 2024 20:49:43 +0530 Subject: [PATCH] fix function name which is consistent --- cloud-functions/python/functions/clearusers/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud-functions/python/functions/clearusers/main.py b/cloud-functions/python/functions/clearusers/main.py index 0175542..e59551d 100644 --- a/cloud-functions/python/functions/clearusers/main.py +++ b/cloud-functions/python/functions/clearusers/main.py @@ -7,7 +7,7 @@ from datetime import datetime initialize_app() @functions_framework.http -def clearusers(request): +def clearUsers(request): """HTTP Cloud Function. Args: request (flask.Request): The request object.