diff --git a/stdlib/3/configparser.pyi b/stdlib/3/configparser.pyi index 4cf5a051b..22a42a14c 100644 --- a/stdlib/3/configparser.pyi +++ b/stdlib/3/configparser.pyi @@ -105,7 +105,7 @@ class RawConfigParser(_parser): ... # This is incompatible with Mapping so we ignore the type. - def items(self, section: str = ..., raw: bool = ..., vars: _section = ...) -> Iterable[Tuple[str, str]]: ... # type: ignore + def items(self, section: str = ..., raw: bool = ..., vars: _section = ...) -> Iterable[Tuple[str, _section]]: ... # type: ignore def set(self, section: str, option: str, value: str) -> None: ...