summaryrefslogtreecommitdiff
path: root/comments.py
diff options
context:
space:
mode:
Diffstat (limited to 'comments.py')
-rw-r--r--comments.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/comments.py b/comments.py
index 32ce8ce..84fecbc 100644
--- a/comments.py
+++ b/comments.py
@@ -21,7 +21,7 @@ else:
from collections.abc import MutableSet, Sized, Set
if False: # MYPY
- from typing import Any, Dict, Optional, List, Union # NOQA
+ from typing import Any, Dict, Optional, List, Union, Optional # NOQA
# fmt: off
__all__ = ["CommentedSeq", "CommentedKeySeq",
@@ -127,7 +127,7 @@ class LineCol(object):
# type: () -> None
self.line = None
self.col = None
- self.data = None # type: Union[None, Dict[Any, Any]]
+ self.data = None # type: Optional[Dict[Any, Any]]
def add_kv_line_col(self, key, data):
# type: (Any, Any) -> None