summaryrefslogtreecommitdiff
path: root/comments.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2020-01-30 10:59:27 +0100
committerAnthon van der Neut <anthon@mnt.org>2020-01-30 10:59:27 +0100
commit10c6a6b07ee92ee797460fbe8207abe0669e25bf (patch)
tree7e0c6e2bb95065c90b5a02d042e4c128ae82f158 /comments.py
parent1d7c8bd627dff124687111dc2125e9f1588f2f49 (diff)
downloadruamel.yaml-10c6a6b07ee92ee797460fbe8207abe0669e25bf.tar.gz
fix issue with mypy, dumping lit scalar in sequence0.16.7
Diffstat (limited to 'comments.py')
-rw-r--r--comments.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/comments.py b/comments.py
index 237ffd3..1cfd662 100644
--- a/comments.py
+++ b/comments.py
@@ -1116,7 +1116,7 @@ class CommentedSet(MutableSet, CommentedBase): # type: ignore # NOQA
class TaggedScalar(CommentedBase):
# the value and style attributes are set during roundtrip construction
def __init__(self, value=None, style=None, tag=None):
- # type: () -> None
+ # type: (Any, Any, Any) -> None
self.value = value
self.style = style
if tag is not None: