summaryrefslogtreecommitdiff
path: root/events.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-08-03 22:14:57 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-08-03 22:14:57 +0200
commitdce10fcff1de54121fb8b440b883ef5d3fe2f96a (patch)
tree072b4bd247e6f1cd95c08c7b67fea0fc96f0578e /events.py
parent2966a4f215861fa05e0dc7e0cd53350766e794c6 (diff)
downloadruamel.yaml-dce10fcff1de54121fb8b440b883ef5d3fe2f96a.tar.gz
Apply oitnb and mypy 0.620, then make everything work again0.15.48
Diffstat (limited to 'events.py')
-rw-r--r--events.py74
1 files changed, 49 insertions, 25 deletions
diff --git a/events.py b/events.py
index 515274a..672042d 100644
--- a/events.py
+++ b/events.py
@@ -12,7 +12,7 @@ def CommentCheck():
class Event(object):
- __slots__ = 'start_mark', 'end_mark', 'comment',
+ __slots__ = 'start_mark', 'end_mark', 'comment'
def __init__(self, start_mark=None, end_mark=None, comment=CommentCheck):
# type: (Any, Any, Any) -> None
@@ -25,18 +25,19 @@ class Event(object):
def __repr__(self):
# type: () -> Any
- attributes = [key for key in ['anchor', 'tag', 'implicit', 'value',
- 'flow_style', 'style']
- if hasattr(self, key)]
- arguments = ', '.join(['%s=%r' % (key, getattr(self, key))
- for key in attributes])
+ attributes = [
+ key
+ for key in ['anchor', 'tag', 'implicit', 'value', 'flow_style', 'style']
+ if hasattr(self, key)
+ ]
+ arguments = ', '.join(['%s=%r' % (key, getattr(self, key)) for key in attributes])
if self.comment not in [None, CommentCheck]:
arguments += ', comment={!r}'.format(self.comment)
return '%s(%s)' % (self.__class__.__name__, arguments)
class NodeEvent(Event):
- __slots__ = 'anchor',
+ __slots__ = ('anchor',)
def __init__(self, anchor, start_mark=None, end_mark=None, comment=None):
# type: (Any, Any, Any, Any) -> None
@@ -45,10 +46,18 @@ class NodeEvent(Event):
class CollectionStartEvent(NodeEvent):
- __slots__ = 'tag', 'implicit', 'flow_style',
-
- def __init__(self, anchor, tag, implicit, start_mark=None, end_mark=None,
- flow_style=None, comment=None):
+ __slots__ = 'tag', 'implicit', 'flow_style'
+
+ def __init__(
+ self,
+ anchor,
+ tag,
+ implicit,
+ start_mark=None,
+ end_mark=None,
+ flow_style=None,
+ comment=None,
+ ):
# type: (Any, Any, Any, Any, Any, Any, Any) -> None
NodeEvent.__init__(self, anchor, start_mark, end_mark, comment)
self.tag = tag
@@ -62,11 +71,11 @@ class CollectionEndEvent(Event):
# Implementations.
+
class StreamStartEvent(Event):
- __slots__ = 'encoding',
+ __slots__ = ('encoding',)
- def __init__(self, start_mark=None, end_mark=None, encoding=None,
- comment=None):
+ def __init__(self, start_mark=None, end_mark=None, encoding=None, comment=None):
# type: (Any, Any, Any, Any) -> None
Event.__init__(self, start_mark, end_mark, comment)
self.encoding = encoding
@@ -77,10 +86,17 @@ class StreamEndEvent(Event):
class DocumentStartEvent(Event):
- __slots__ = 'explicit', 'version', 'tags',
-
- def __init__(self, start_mark=None, end_mark=None,
- explicit=None, version=None, tags=None, comment=None):
+ __slots__ = 'explicit', 'version', 'tags'
+
+ def __init__(
+ self,
+ start_mark=None,
+ end_mark=None,
+ explicit=None,
+ version=None,
+ tags=None,
+ comment=None,
+ ):
# type: (Any, Any, Any, Any, Any, Any) -> None
Event.__init__(self, start_mark, end_mark, comment)
self.explicit = explicit
@@ -89,10 +105,9 @@ class DocumentStartEvent(Event):
class DocumentEndEvent(Event):
- __slots__ = 'explicit',
+ __slots__ = ('explicit',)
- def __init__(self, start_mark=None, end_mark=None,
- explicit=None, comment=None):
+ def __init__(self, start_mark=None, end_mark=None, explicit=None, comment=None):
# type: (Any, Any, Any, Any) -> None
Event.__init__(self, start_mark, end_mark, comment)
self.explicit = explicit
@@ -103,10 +118,19 @@ class AliasEvent(NodeEvent):
class ScalarEvent(NodeEvent):
- __slots__ = 'tag', 'implicit', 'value', 'style',
-
- def __init__(self, anchor, tag, implicit, value,
- start_mark=None, end_mark=None, style=None, comment=None):
+ __slots__ = 'tag', 'implicit', 'value', 'style'
+
+ def __init__(
+ self,
+ anchor,
+ tag,
+ implicit,
+ value,
+ start_mark=None,
+ end_mark=None,
+ style=None,
+ comment=None,
+ ):
# type: (Any, Any, Any, Any, Any, Any, Any, Any) -> None
NodeEvent.__init__(self, anchor, start_mark, end_mark, comment)
self.tag = tag