summaryrefslogtreecommitdiff
path: root/scanner.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-09-07 10:20:34 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-09-07 10:20:34 +0200
commita2afbcfe5398c971ed59d583eb88588c789bfa67 (patch)
tree4fe61f32162f29e82294ac82e0fd3a3693683783 /scanner.py
parent56383ab8491ed86f6a2133aeff2dd03dad4e829a (diff)
downloadruamel.yaml-a2afbcfe5398c971ed59d583eb88588c789bfa67.tar.gz
roll out new version, with some fixes/enhancements0.15.65
Diffstat (limited to 'scanner.py')
-rw-r--r--scanner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scanner.py b/scanner.py
index e4a8765..bbd77d2 100644
--- a/scanner.py
+++ b/scanner.py
@@ -533,7 +533,7 @@ class Scanner(object):
self.remove_possible_simple_key()
# Decrease the flow level.
try:
- popped = self.flow_context.pop()
+ popped = self.flow_context.pop() # NOQA
except IndexError:
# We must not be in a list or object.
# Defer error handling to the parser.