summaryrefslogtreecommitdiff
path: root/tokens.py
diff options
context:
space:
mode:
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