From 28dc9a5eb62ff81824129d32cdd383ea728306f1 Mon Sep 17 00:00:00 2001 From: Seb Martin Date: Wed, 10 Apr 2019 12:00:18 -0400 Subject: [PATCH] fix 3.7-dev type issue --- pyoozie/tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyoozie/tags.py b/pyoozie/tags.py index f4bf46b..b160a0e 100644 --- a/pyoozie/tags.py +++ b/pyoozie/tags.py @@ -496,7 +496,7 @@ def _xml(self, doc, tag, text): return doc -class _AbstractWorkflowEntity(typing.Iterable): +class _AbstractWorkflowEntity(collections.Iterable): """An abstract object representing an Oozie workflow action that can be serialized to XML.""" # pylint: disable=abstract-method