From 2f9cdc98cc0adea615cb2180481c7780eef48f97 Mon Sep 17 00:00:00 2001 From: Anthon van der Neut Date: Sat, 27 Feb 2016 10:15:02 +0100 Subject: pep8 compliance, util.load_yaml_guess_indent --- error.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'error.py') diff --git a/error.py b/error.py index 7db3386..1ec77e6 100644 --- a/error.py +++ b/error.py @@ -1,3 +1,5 @@ +# coding: utf-8 + from __future__ import absolute_import __all__ = ['Mark', 'YAMLError', 'MarkedYAMLError'] @@ -69,10 +71,10 @@ class MarkedYAMLError(YAMLError): if self.context is not None: lines.append(self.context) if self.context_mark is not None \ - and (self.problem is None or self.problem_mark is None - or self.context_mark.name != self.problem_mark.name - or self.context_mark.line != self.problem_mark.line - or self.context_mark.column != self.problem_mark.column): + and (self.problem is None or self.problem_mark is None or + self.context_mark.name != self.problem_mark.name or + self.context_mark.line != self.problem_mark.line or + self.context_mark.column != self.problem_mark.column): lines.append(str(self.context_mark)) if self.problem is not None: lines.append(self.problem) -- cgit v1.2.1