summaryrefslogtreecommitdiff
path: root/tokens.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2017-03-16 08:50:30 +0100
committerAnthon van der Neut <anthon@mnt.org>2017-03-16 08:50:30 +0100
commitf75754aa90ea4d53f87aba5fce692185a25514c3 (patch)
tree678c37afebe1efd786d513e222a053a3cfe76a07 /tokens.py
parent65537ac45d2fe35a98322aea5e6056baa1aefd8a (diff)
downloadruamel.yaml-f75754aa90ea4d53f87aba5fce692185a25514c3.tar.gz
some changes for mypy --strict
Diffstat (limited to 'tokens.py')
-rw-r--r--tokens.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tokens.py b/tokens.py
index a4646bd..9001216 100644
--- a/tokens.py
+++ b/tokens.py
@@ -216,6 +216,7 @@ class CommentToken(Token):
id = '<comment>'
def __init__(self, value, start_mark, end_mark):
+ # type: (Any, Any, Any) -> None
Token.__init__(self, start_mark, end_mark)
self.value = value