summaryrefslogtreecommitdiff
path: root/comments.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2017-06-07 11:46:23 +0200
committerAnthon van der Neut <anthon@mnt.org>2017-06-07 11:46:23 +0200
commit90583069b7efd3744e46ba65499d7090e09d70c3 (patch)
treef8ab1d58fd1492d9c8a4510dadf78b6fbbc0117a /comments.py
parent0cd057811100327978829dcef723d11e78c8efc2 (diff)
downloadruamel.yaml-90583069b7efd3744e46ba65499d7090e09d70c3.tar.gz
fix issue # 123: type annotations0.15.2
mypy needed updating from 0.501 to 0.511, with may different warnings/errors then before
Diffstat (limited to 'comments.py')
-rw-r--r--comments.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/comments.py b/comments.py
index 93974d9..87b6629 100644
--- a/comments.py
+++ b/comments.py
@@ -259,7 +259,7 @@ class CommentedBase(object):
if c[3] is None:
c[3] = []
for com in after.split('\n'):
- c[3].append(comment_token(com, start_mark))
+ c[3].append(comment_token(com, start_mark)) # type: ignore
@property
def fa(self):
@@ -359,6 +359,10 @@ class CommentedBase(object):
# type: () -> Any
raise NotImplementedError
+ def _yaml_get_column(self, key):
+ # type: (Any) -> Any
+ raise NotImplementedError
+
class CommentedSeq(list, CommentedBase):
__slots__ = Comment.attrib,
@@ -389,7 +393,7 @@ class CommentedSeq(list, CommentedBase):
def pop(self, idx=None):
# type: (Any) -> Any
- res = list.pop(self, idx)
+ res = list.pop(self, idx) # type: ignore
self.ca.items.pop(idx, None) # might not be there -> default value
for list_index in sorted(self.ca.items):
if list_index < idx: