Skip to content

Commit 5f01343

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 5745bab commit 5f01343

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

stdlib/configparser.pyi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,9 @@ class RawConfigParser(_Parser):
270270
def options(self, section: _SectionName) -> list[str]: ...
271271
def has_option(self, section: _SectionName, option: str) -> bool: ...
272272
@overload
273-
def read(self, filenames: GenericPath[AnyStr] | Iterable[GenericPath[AnyStr]], encoding: str | None = None) -> list[AnyStr]: ...
273+
def read(
274+
self, filenames: GenericPath[AnyStr] | Iterable[GenericPath[AnyStr]], encoding: str | None = None
275+
) -> list[AnyStr]: ...
274276
@overload
275277
def read(self, filenames: StrOrBytesPath | Iterable[StrOrBytesPath], encoding: str | None = None) -> list[str | bytes]: ...
276278
def read_file(self, f: Iterable[str], source: str | None = None) -> None: ...

0 commit comments

Comments
 (0)