Skip to content

Commit 7c6a5c7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent b6d47b5 commit 7c6a5c7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

stdlib/builtins.pyi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,9 @@ class str(Sequence[str]):
464464
@overload
465465
def partition(self, __sep: str) -> tuple[str, str, str]: ...
466466
@overload
467-
def replace(self: LiteralString, __old: LiteralString, __new: LiteralString, __count: SupportsIndex = ...) -> LiteralString: ...
467+
def replace(
468+
self: LiteralString, __old: LiteralString, __new: LiteralString, __count: SupportsIndex = ...
469+
) -> LiteralString: ...
468470
@overload
469471
def replace(self, __old: str, __new: str, __count: SupportsIndex = ...) -> str: ...
470472
if sys.version_info >= (3, 9):

0 commit comments

Comments
 (0)