Remove unused assignment

pull/1/head
Stella Laurenzo 2020-06-09 18:35:21 -07:00
parent 340f109742
commit 6728503fcf
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ class FunctionDefImporter(BaseNodeVisitor):
def visit_Expr(self, ast_node):
ir_h = self.fctx.ir_h
execop, ip = ir_h.basicpy_exec_op()
_, ip = ir_h.basicpy_exec_op()
# Evaluate the expression in the exec body.
orig_ip = ir_h.builder.insertion_point
ir_h.builder.insertion_point = ip