Remove unused # type: ignore comments (#3325)

This commit is contained in:
Sebastian Rittau
2019-10-09 19:27:18 +02:00
committed by Jelle Zijlstra
parent bd7222c396
commit 07c8675ba5
7 changed files with 20 additions and 34 deletions

View File

@@ -115,7 +115,7 @@ class RawConfigParser(_parser):
@overload # type: ignore
def get(self, section: str, option: str, *, raw: bool = ..., vars: Optional[_section] = ...) -> str: ...
@overload # type: ignore
@overload
def get(self, section: str, option: str, *, raw: bool = ..., vars: Optional[_section] = ..., fallback: _T) -> Union[str, _T]: ...
@overload