File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -551,7 +551,7 @@ def _(node: Union[ast.Attribute, ast.Subscript]) -> ast.Call:
551
551
keywords = [],
552
552
)
553
553
else :
554
- return ast .Call (
554
+ return ast .Call ( # type: ignore
555
555
func = ast .Attribute (
556
556
value = node .value ,
557
557
attr = (
@@ -639,7 +639,7 @@ def _(node: ast.Compare) -> ast.Call:
639
639
keywords = [],
640
640
)
641
641
else :
642
- return ast .Call (
642
+ return ast .Call ( # type: ignore
643
643
func = ast .Attribute (
644
644
value = node .left ,
645
645
attr = CMP2MAGIC [type (node .ops [0 ])],
@@ -673,7 +673,7 @@ def _(node: ast.BinOp) -> ast.Call:
673
673
keywords = [],
674
674
)
675
675
else :
676
- return ast .Call (
676
+ return ast .Call ( # type: ignore
677
677
func = ast .Attribute (
678
678
value = node .left ,
679
679
attr = OP2MAGIC [type (node .op )],
You can’t perform that action at this time.
0 commit comments