Skip to content

Commit 4be31c6

Browse files
pre-commit-ci[bot]BobTheBuidler
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 5875fde commit 4be31c6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mypy/constant_fold.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@
88
from typing import Final, Union
99

1010
from mypy.nodes import (
11+
CallExpr,
1112
ComplexExpr,
1213
Expression,
1314
FloatExpr,
1415
IntExpr,
16+
ListExpr,
17+
MemberExpr,
1518
NameExpr,
1619
OpExpr,
1720
StrExpr,
21+
TupleExpr,
1822
UnaryExpr,
1923
Var,
20-
CallExpr,
21-
MemberExpr,
22-
ListExpr,
23-
TupleExpr,
2424
)
2525

2626
# All possible result types of constant folding

0 commit comments

Comments
 (0)