summaryrefslogtreecommitdiff
path: root/sphinx/util
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2017-12-16 14:51:55 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2017-12-16 14:52:20 +0900
commit7cabd6cbb053965e1930b53c27d596fd1a52dd78 (patch)
treea600993c9975ef8d984a875cd9841cb11265ebd9 /sphinx/util
parentb131c33af5ea49c6416026050725a0121c8991f3 (diff)
downloadsphinx-git-7cabd6cbb053965e1930b53c27d596fd1a52dd78.tar.gz
Fix mypy violations
Diffstat (limited to 'sphinx/util')
-rw-r--r--sphinx/util/__init__.py8
-rw-r--r--sphinx/util/logging.py4
2 files changed, 5 insertions, 7 deletions
diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py
index 03f8ce6a3..55fb9fcc1 100644
--- a/sphinx/util/__init__.py
+++ b/sphinx/util/__init__.py
@@ -398,10 +398,8 @@ def parselinenos(spec, total):
elif len(begend) == 1:
items.append(int(begend[0]) - 1)
elif len(begend) == 2:
- start = int(begend[0] or 1) # type: ignore
- # left half open (cf. -10)
- end = int(begend[1] or max(start, total)) # type: ignore
- # right half open (cf. 10-)
+ start = int(begend[0] or 1) # left half open (cf. -10)
+ end = int(begend[1] or max(start, total)) # right half open (cf. 10-)
if start > end: # invalid range (cf. 10-1)
raise ValueError
items.extend(range(start - 1, end))
@@ -528,7 +526,7 @@ class PeekableIterator(object):
def peek(self):
# type: () -> Any
"""Return the next item without changing the state of the iterator."""
- item = next(self) # type: ignore
+ item = next(self)
self.push(item)
return item
diff --git a/sphinx/util/logging.py b/sphinx/util/logging.py
index 6148a5445..00c12ec4f 100644
--- a/sphinx/util/logging.py
+++ b/sphinx/util/logging.py
@@ -156,8 +156,8 @@ class NewLineStreamHandlerPY2(logging.StreamHandler):
# remove return code forcely when nonl=True
self.stream = StringIO()
super(NewLineStreamHandlerPY2, self).emit(record)
- stream.write(self.stream.getvalue()[:-1]) # type: ignore
- stream.flush() # type: ignore
+ stream.write(self.stream.getvalue()[:-1])
+ stream.flush()
else:
super(NewLineStreamHandlerPY2, self).emit(record)
finally: