Skip to content

Commit a91d4be

Browse files
committed
delete debugs prints
1 parent d405ffc commit a91d4be

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

functions/adoption/libs/queries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def list_data(params):
1010
ref = DB.collection(u'adoption')
1111

1212
query = ref
13-
print("params", params)
13+
1414
if 'start' in params:
1515
query = query.where('date', '>=', params['start'])
1616
if 'end' in params:

functions/cwvtech/libs/queries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def list_data(params):
99
ref = DB.collection(u'core_web_vitals')
1010

1111
query = ref
12-
print("params", params)
12+
1313
if 'start' in params:
1414
query = query.where('date', '>=', params['start'])
1515
if 'end' in params:

functions/technologies/libs/queries.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ def list_data(params):
1010
ref = DB.collection(u'technologies')
1111

1212
query = ref
13-
print("params", params)
1413

1514
if 'start' in params:
1615
query = query.where('date', '>=', params['start'])

0 commit comments

Comments
 (0)