Skip to content

Commit

Permalink
Fix lint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
tswast committed Nov 27, 2017
1 parent 913bd61 commit cb10a2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bigquery/google/cloud/bigquery/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ def list_datasets(self, include_all=False, filter=None, max_results=None,
:rtype: :class:`~google.api_core.page_iterator.Iterator`
:returns:
Iterator of :class:`~google.cloud.bigquery.dataset.DatasetListItem`.
Iterator of
:class:`~google.cloud.bigquery.dataset.DatasetListItem`.
associated with the client's project.
"""
extra_params = {}
Expand Down
2 changes: 1 addition & 1 deletion bigquery/google/cloud/bigquery/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -632,4 +632,4 @@ def table(self, table_id):
:rtype: :class:`~google.cloud.bigquery.table.TableReference`
:returns: a TableReference for a table in this dataset.
"""
return TableReference(self.reference, table_id)
return TableReference(self.reference, table_id)

0 comments on commit cb10a2b

Please sign in to comment.