We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa8f6ec commit a71888aCopy full SHA for a71888a
samples/browse_table_data.py
@@ -47,7 +47,7 @@ def browse_table_data(table_id: str) -> None:
47
print("Downloaded {} rows from table {}".format(len(rows), table_id))
48
49
# Print row data in tabular format.
50
- rows_iter = client.list_rows(table, max_results=10)
+ rows_iter = client.list_rows(table_id, max_results=10)
51
format_string = "{!s:<16} " * len(rows_iter.schema)
52
field_names = [field.name for field in rows_iter.schema]
53
print(format_string.format(*field_names)) # Prints column headers.
0 commit comments