Skip to content

Commit

Permalink
Merge pull request #10693 from tk0miya/mypy-0.971
Browse files Browse the repository at this point in the history
Fix mypy violations (with mypy-0.971)
  • Loading branch information
tk0miya committed Jul 23, 2022
2 parents 213c29b + 5b89c39 commit 94f62e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -41,7 +41,7 @@
'lint': [
'flake8>=3.5.0',
'isort',
'mypy>=0.950',
'mypy>=0.971',
'docutils-stubs',
"types-typed-ast",
"types-requests",
Expand Down
4 changes: 2 additions & 2 deletions sphinx/util/logging.py
Expand Up @@ -77,7 +77,7 @@ def convert_serializable(records: List[logging.LogRecord]) -> None:

location = getattr(r, 'location', None)
if isinstance(location, nodes.Node):
r.location = get_node_location(location) # type: ignore
r.location = get_node_location(location)


class SphinxLogRecord(logging.LogRecord):
Expand Down Expand Up @@ -431,7 +431,7 @@ class DisableWarningIsErrorFilter(logging.Filter):
"""Disable WarningIsErrorFilter if this filter installed."""

def filter(self, record: logging.LogRecord) -> bool:
record.skip_warningsiserror = True # type: ignore
record.skip_warningsiserror = True
return True


Expand Down

0 comments on commit 94f62e7

Please sign in to comment.