summaryrefslogtreecommitdiff
path: root/composer.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2016-02-16 21:16:30 +0100
committerAnthon van der Neut <anthon@mnt.org>2016-02-16 21:16:30 +0100
commita5f5028c7d5623a13b392d8e9bdb9be622476f8c (patch)
tree8622585e8067711fcd86cda71d289f46b1309b75 /composer.py
parent64c39f0c0b38bcac13cb4c31429b5e3caadf278e (diff)
downloadruamel.yaml-a5f5028c7d5623a13b392d8e9bdb9be622476f8c.tar.gz
- make sure there is a space before # if scalar pushes (through indent)
a comment from its original column - flake 8
Diffstat (limited to 'composer.py')
-rw-r--r--composer.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/composer.py b/composer.py
index a6bf24f..6a7e439 100644
--- a/composer.py
+++ b/composer.py
@@ -5,13 +5,13 @@ __all__ = ['Composer', 'ComposerError']
try:
from .error import MarkedYAMLError
- from .events import *
- from .nodes import *
+ from .events import * # NOQA
+ from .nodes import * # NOQA
from .compat import utf8
except (ImportError, ValueError): # for Jython
from ruamel.yaml.error import MarkedYAMLError
- from ruamel.yaml.events import *
- from ruamel.yaml.nodes import *
+ from ruamel.yaml.events import * # NOQA
+ from ruamel.yaml.nodes import * # NOQA
from ruamel.yaml.compat import utf8