Skip to content

Commit efe5b2a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent afe6d12 commit efe5b2a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

mypy/nodes.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1532,7 +1532,13 @@ class IfStmt(Statement):
15321532
else_body: Block | None
15331533
pass1_always_true_block: bool
15341534

1535-
def __init__(self, expr: list[Expression], body: list[Block], else_body: Block | None, has_pass1_always_true_block=False) -> None:
1535+
def __init__(
1536+
self,
1537+
expr: list[Expression],
1538+
body: list[Block],
1539+
else_body: Block | None,
1540+
has_pass1_always_true_block=False,
1541+
) -> None:
15361542
super().__init__()
15371543
self.expr = expr
15381544
self.body = body

0 commit comments

Comments
 (0)