We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74c7197 commit 5035637Copy full SHA for 5035637
1 file changed
sdks/python/apache_beam/runners/dataflow/dataflow_runner_test.py
@@ -50,15 +50,15 @@
50
from apache_beam.typehints import typehints
51
52
# Protect against environments where apitools library is not available.
53
-# pylint: disable=wrong-import-order, wrong-import-position
+# pylint: disable=wrong-import-order, wrong-import-position, ungrouped-imports
54
try:
55
from google.cloud import dataflow as dataflow_api
56
57
from apache_beam.runners.dataflow.internal import apiclient
58
except ImportError:
59
apiclient = None # type: ignore
60
dataflow_api = None # type: ignore
61
-# pylint: enable=wrong-import-order, wrong-import-position
+# pylint: enable=wrong-import-order, wrong-import-position, ungrouped-imports
62
63
64
# SpecialParDo and SpecialDoFn are used in test_remote_runner_display_data.
0 commit comments