This is an automated email from the ASF dual-hosted git repository.
pabloem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new c9f1fee lint
new e094603 Merge pull request #14525 from emilymye/pylint - Fix Python
lint
c9f1fee is described below
commit c9f1fee8984e368209cfe4a247b66594b5eb3571
Author: Emily Ye <[email protected]>
AuthorDate: Tue Apr 13 11:10:43 2021 -0700
lint
---
sdks/python/apache_beam/io/gcp/bigquery_tools.py | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/sdks/python/apache_beam/io/gcp/bigquery_tools.py
b/sdks/python/apache_beam/io/gcp/bigquery_tools.py
index 8551e8f..059414c 100644
--- a/sdks/python/apache_beam/io/gcp/bigquery_tools.py
+++ b/sdks/python/apache_beam/io/gcp/bigquery_tools.py
@@ -72,13 +72,12 @@ except ImportError:
pass
# pylint: enable=wrong-import-order, wrong-import-position
-# pylint: disable=wrong-import-order, wrong-import-position
+# pylint: disable=wrong-import-order, wrong-import-position, ungrouped-imports
try:
from apache_beam.io.gcp.internal.clients.bigquery import TableReference
except ImportError:
TableReference = None
-
-# pylint: enable=wrong-import-order, wrong-import-position
+# pylint: enable=wrong-import-order, wrong-import-position, ungrouped-imports
_LOGGER = logging.getLogger(__name__)