summaryrefslogtreecommitdiff
path: root/parser.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2017-07-12 12:13:34 +0200
committerAnthon van der Neut <anthon@mnt.org>2017-07-12 12:13:34 +0200
commit2ea4de43fe2e0160e27b605f2c65f33c5a2083d7 (patch)
treeddd268394e9fa05011585fd326cb4f635f0510a1 /parser.py
parentae5b5638efc9f20c027aac28f52dbfe0fc955998 (diff)
downloadruamel.yaml-2ea4de43fe2e0160e27b605f2c65f33c5a2083d7.tar.gz
update to flake8==3.3.0 with --ignore F405
Diffstat (limited to 'parser.py')
-rw-r--r--parser.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/parser.py b/parser.py
index c7a68fd..779d50f 100644
--- a/parser.py
+++ b/parser.py
@@ -97,8 +97,8 @@ class Parser(object):
# do not give many comments here.
DEFAULT_TAGS = {
- u'!': u'!',
- u'!!': u'tag:yaml.org,2002:',
+ u'!': u'!',
+ u'!!': u'tag:yaml.org,2002:',
}
def __init__(self, loader):
@@ -732,4 +732,4 @@ class RoundTripParser(Parser):
u'timestamp', u'omap', u'pairs', u'set', u'str',
u'seq', u'map'):
return Parser.transform_tag(self, handle, suffix)
- return handle+suffix
+ return handle + suffix