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 --- reader.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'reader.py') diff --git a/reader.py b/reader.py index da98874..376c6de 100644 --- a/reader.py +++ b/reader.py @@ -1,3 +1,5 @@ +# coding: utf-8 + from __future__ import absolute_import # This module contains abstractions for the input stream. You don't have to # looks further, there are no pretty code. @@ -18,8 +20,6 @@ from __future__ import absolute_import # reader.line, stream.column - the line and the column of the current # character. -__all__ = ['Reader', 'ReaderError'] - import codecs import re @@ -30,6 +30,8 @@ except (ImportError, ValueError): # for Jython from ruamel.yaml.error import YAMLError, Mark from ruamel.yaml.compat import text_type, binary_type, PY3 +__all__ = ['Reader', 'ReaderError'] + class ReaderError(YAMLError): -- cgit v1.2.1