Skip to content

Commit cb10a2b

Browse files
committed
Fix lint errors.
1 parent 913bd61 commit cb10a2b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bigquery/google/cloud/bigquery/client.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ def list_datasets(self, include_all=False, filter=None, max_results=None,
185185
186186
:rtype: :class:`~google.api_core.page_iterator.Iterator`
187187
:returns:
188-
Iterator of :class:`~google.cloud.bigquery.dataset.DatasetListItem`.
188+
Iterator of
189+
:class:`~google.cloud.bigquery.dataset.DatasetListItem`.
189190
associated with the client's project.
190191
"""
191192
extra_params = {}

bigquery/google/cloud/bigquery/dataset.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -632,4 +632,4 @@ def table(self, table_id):
632632
:rtype: :class:`~google.cloud.bigquery.table.TableReference`
633633
:returns: a TableReference for a table in this dataset.
634634
"""
635-
return TableReference(self.reference, table_id)
635+
return TableReference(self.reference, table_id)

0 commit comments

Comments
 (0)