summaryrefslogtreecommitdiff
path: root/nodes.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2017-06-07 10:25:29 +0200
committerAnthon van der Neut <anthon@mnt.org>2017-06-07 10:25:29 +0200
commit560444b6855c3439812b6b482ef9956d014e74f3 (patch)
treeed2c7ed3287a79c1d662b274340632a107a399b9 /nodes.py
parent7fcb11d7af77110fb5e3eea90cdebf108dcfe480 (diff)
downloadruamel.yaml-560444b6855c3439812b6b482ef9956d014e74f3.tar.gz
error/warning on duplicate mapping keys0.15.1
Diffstat (limited to 'nodes.py')
-rw-r--r--nodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nodes.py b/nodes.py
index 75cefb6..96f3190 100644
--- a/nodes.py
+++ b/nodes.py
@@ -97,5 +97,5 @@ class SequenceNode(CollectionNode):
class MappingNode(CollectionNode):
- __slots__ = ()
+ __slots__ = ('merge', )
id = 'mapping'