Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 0bdbf2b

Browse files
authored
Update the dashboard script to match the bigquery library changes (#137)
1 parent c1c7c89 commit 0bdbf2b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

perf-dashboard/clientlibs-download/python_clientlibs_download.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def get_weekly_clientlibs_downloads(clientlibs_table_name, date_str):
116116
wait_for_job(query_job)
117117

118118
# Fetch the results
119-
result = query_job.results().fetch_data()
119+
result = query_job.result().fetch_data()
120120
result_list = [item for item in result]
121121

122122
# In case the result_list contains the metadata like total_rows, the
@@ -125,7 +125,7 @@ def get_weekly_clientlibs_downloads(clientlibs_table_name, date_str):
125125
result_list = result_list[0]
126126

127127
rows = [(date_time,) + row for row in result_list]
128-
print rows
128+
print(rows)
129129

130130
return rows
131131

0 commit comments

Comments
 (0)