Skip to content

Commit e466f3b

Browse files
committed
Docstring updates.
2 parents 48314cd + 693e108 commit e466f3b

File tree

3 files changed

+32
-1028
lines changed

3 files changed

+32
-1028
lines changed

bigquery_python_tutorial/tables.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Fetch tables from Google Cloud project."""
1+
"""Fetch tables & table schemas."""
22
from typing import List, Optional, Sequence, Union, Mapping, Any
33
import pprint
44
from google.cloud.bigquery.table import Table
@@ -14,6 +14,7 @@ def list_all_tables() -> List[Optional[Table]]:
1414
:returns: List[Optional[Table]]
1515
"""
1616
tables = []
17+
LOGGER.info("LISTING ALL TABLES IN PROJECT:")
1718
for dataset in gbq.list_datasets():
1819
for listed_table in gbq.list_tables(dataset.dataset_id):
1920
table = get_table(

0 commit comments

Comments
 (0)