From cb10a2bb84818ac870a209db99b4d63a79b55f49 Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Mon, 27 Nov 2017 11:11:35 -0800 Subject: [PATCH] Fix lint errors. --- bigquery/google/cloud/bigquery/client.py | 3 ++- bigquery/google/cloud/bigquery/dataset.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bigquery/google/cloud/bigquery/client.py b/bigquery/google/cloud/bigquery/client.py index 5e992b1df2763..499fea1aeb4b5 100644 --- a/bigquery/google/cloud/bigquery/client.py +++ b/bigquery/google/cloud/bigquery/client.py @@ -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 = {} diff --git a/bigquery/google/cloud/bigquery/dataset.py b/bigquery/google/cloud/bigquery/dataset.py index 32cdfef5f08fd..7f93daaaf182d 100644 --- a/bigquery/google/cloud/bigquery/dataset.py +++ b/bigquery/google/cloud/bigquery/dataset.py @@ -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) \ No newline at end of file + return TableReference(self.reference, table_id)