File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 4343 'flake8-comprehensions' ,
4444 'flake8-bugbear' ,
4545 'isort' ,
46- 'mypy>=0.950 ' ,
46+ 'mypy>=0.971 ' ,
4747 'sphinx-lint' ,
4848 'docutils-stubs' ,
4949 "types-typed-ast" ,
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ def convert_serializable(records: List[logging.LogRecord]) -> None:
7878
7979 location = getattr (r , 'location' , None )
8080 if isinstance (location , nodes .Node ):
81- r .location = get_node_location (location ) # type: ignore
81+ r .location = get_node_location (location )
8282
8383
8484class SphinxLogRecord (logging .LogRecord ):
@@ -432,7 +432,7 @@ class DisableWarningIsErrorFilter(logging.Filter):
432432 """Disable WarningIsErrorFilter if this filter installed."""
433433
434434 def filter (self , record : logging .LogRecord ) -> bool :
435- record .skip_warningsiserror = True # type: ignore
435+ record .skip_warningsiserror = True
436436 return True
437437
438438
You can’t perform that action at this time.
0 commit comments