From 1c54b60cff060fe32ba1d5d7b507fafe4205e942 Mon Sep 17 00:00:00 2001 From: yatmesh Date: Thu, 25 Sep 2025 15:43:20 +0530 Subject: [PATCH] (20250825) -Added debug print statement for google places api testing. --- controllers_v2/software/google_places/google_places.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/controllers_v2/software/google_places/google_places.py b/controllers_v2/software/google_places/google_places.py index 944cead..c1cf2dc 100644 --- a/controllers_v2/software/google_places/google_places.py +++ b/controllers_v2/software/google_places/google_places.py @@ -205,6 +205,8 @@ class PlacesController(GooglePlacesController): ) -> PlacesAuthResponse: # CHECK -- API KEY IS VALID - + print("AUTH -", auth) + print("API-", auth.apiKey) valid_api = await PlacesController.is_google_places_api_key_valid(api_key=auth.apiKey) print(valid_api)