From 909171f93bbad505d35f2856e0105f173858ea5f Mon Sep 17 00:00:00 2001 From: Anthon van der Neut Date: Thu, 15 Aug 2019 22:37:48 +0200 Subject: mypy, split contruct_object fixes issue #306 *When this change indeed resolves your problem, please **Close** this issue*. *(You can do so using the WorkFlow pull-down (close to the top right of this page))* --- scalarstring.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scalarstring.py') diff --git a/scalarstring.py b/scalarstring.py index bf3cbab..8427323 100644 --- a/scalarstring.py +++ b/scalarstring.py @@ -129,7 +129,8 @@ def walk_tree(base, map=None): map[':'] = SingleQuotedScalarString walk_tree(data, map=map) """ - from ruamel.yaml.compat import string_types, MutableMapping, MutableSequence + from ruamel.yaml.compat import string_types + from ruamel.yaml.compat import MutableMapping, MutableSequence # type: ignore if map is None: map = {'\n': preserve_literal} -- cgit v1.2.1