From 8016f6c0df630f6f5670546225c18658df6f94d2 Mon Sep 17 00:00:00 2001 From: Charles Chen Date: Sun, 8 Jul 2018 14:15:43 -0700 Subject: [PATCH] [BEAM-4003] Fix missing iteritems import --- sdks/python/apache_beam/runners/dataflow/dataflow_runner.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sdks/python/apache_beam/runners/dataflow/dataflow_runner.py b/sdks/python/apache_beam/runners/dataflow/dataflow_runner.py index b90844e44dd3..5028cb89a892 100644 --- a/sdks/python/apache_beam/runners/dataflow/dataflow_runner.py +++ b/sdks/python/apache_beam/runners/dataflow/dataflow_runner.py @@ -32,6 +32,7 @@ from future.moves.urllib.parse import quote from future.moves.urllib.parse import unquote +from future.utils import iteritems import apache_beam as beam from apache_beam import coders