Skip to content

Commit ebd3f94

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 2ffcedb commit ebd3f94

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

stdlib/ast.pyi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,9 @@ class While(stmt):
541541
def __init__(self, test: expr, body: list[stmt], orelse: list[stmt], **kwargs: Unpack[_Attributes]) -> None: ...
542542

543543
if sys.version_info >= (3, 14):
544-
def __replace__(self, *, test: expr = ..., body: list[stmt] = ..., orelse: list[stmt] = ..., **kwargs: Unpack[_Attributes]) -> Self: ...
544+
def __replace__(
545+
self, *, test: expr = ..., body: list[stmt] = ..., orelse: list[stmt] = ..., **kwargs: Unpack[_Attributes]
546+
) -> Self: ...
545547

546548
class If(stmt):
547549
if sys.version_info >= (3, 10):

0 commit comments

Comments
 (0)