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))* --- util.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'util.py') diff --git a/util.py b/util.py index 2412888..3eb7d76 100644 --- a/util.py +++ b/util.py @@ -77,9 +77,10 @@ def load_yaml_guess_indent(stream, **kw): return idx if isinstance(stream, text_type): - yaml_str = stream + yaml_str = stream # type: Any elif isinstance(stream, binary_type): - yaml_str = stream.decode('utf-8') # most likely, but the Reader checks BOM for this + # most likely, but the Reader checks BOM for this + yaml_str = stream.decode('utf-8') else: yaml_str = stream.read() map_indent = None -- cgit v1.2.1