We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 006c2ea commit e1c98d4Copy full SHA for e1c98d4
stdlib/configparser.pyi
@@ -272,9 +272,7 @@ class RawConfigParser(_Parser):
272
@overload
273
def read(self, filenames: GenericPath[AnyStr], encoding: str | None = None) -> list[AnyStr]: ...
274
275
- def read(
276
- self, filenames: Iterable[GenericPath[AnyStr]], encoding: str | None = None
277
- ) -> list[AnyStr]: ...
+ def read(self, filenames: Iterable[GenericPath[AnyStr]], encoding: str | None = None) -> list[AnyStr]: ...
278
279
def read(self, filenames: Iterable[StrOrBytesPath], encoding: str | None = None) -> list[str | bytes]: ...
280
def read_file(self, f: Iterable[str], source: str | None = None) -> None: ...
0 commit comments