From 6247318b3f32228db4908badd38b974f5ebadb87 Mon Sep 17 00:00:00 2001 From: tvalentyn Date: Fri, 30 Jun 2023 12:18:54 -0600 Subject: [PATCH] Remove relative imports. (#27323) --- sdks/python/apache_beam/examples/snippets/snippets_test.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sdks/python/apache_beam/examples/snippets/snippets_test.py b/sdks/python/apache_beam/examples/snippets/snippets_test.py index 1e9d0b512123..0cae02f859ab 100644 --- a/sdks/python/apache_beam/examples/snippets/snippets_test.py +++ b/sdks/python/apache_beam/examples/snippets/snippets_test.py @@ -41,6 +41,9 @@ from apache_beam import typehints from apache_beam.coders.coders import ToBytesCoder from apache_beam.examples.snippets import snippets +from apache_beam.examples.snippets import snippets_examples_wordcount_debugging +from apache_beam.examples.snippets import snippets_examples_wordcount_minimal +from apache_beam.examples.snippets import snippets_examples_wordcount_wordcount from apache_beam.metrics import Metrics from apache_beam.metrics.metric import MetricsFilter from apache_beam.options.pipeline_options import GoogleCloudOptions @@ -61,10 +64,6 @@ from apache_beam.transforms.window import TimestampedValue from apache_beam.utils.windowed_value import WindowedValue -from . import snippets_examples_wordcount_debugging -from . import snippets_examples_wordcount_minimal -from . import snippets_examples_wordcount_wordcount - # Protect against environments where apitools library is not available. # pylint: disable=wrong-import-order, wrong-import-position try: