Marco310 commited on
Commit
4f491c9
·
1 Parent(s): ce6a584

Fix: fix unsafe print

Browse files
src/services/googlemap_api_service.py CHANGED
@@ -47,7 +47,7 @@ class GoogleMapAPIService:
47
  Args:
48
  api_key: Google Maps API key (required)
49
  """
50
- print(api_key)
51
  if api_key:
52
  self.api_key = api_key
53
  else:
 
47
  Args:
48
  api_key: Google Maps API key (required)
49
  """
50
+
51
  if api_key:
52
  self.api_key = api_key
53
  else: