Skip to content

Commit c1beb3d

Browse files
committed
lint
1 parent 646d1ce commit c1beb3d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

exir/emit/_emitter.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,6 @@ def _emit_scan(
992992

993993
num_carry = len(init)
994994
num_xs = len(xs)
995-
num_additional = len(additional_inputs)
996995

997996
# Split output values into carry outputs and y outputs
998997
carry_outputs = list(subemitter_binding_output_values[:num_carry])
@@ -1048,7 +1047,7 @@ def _emit_scan(
10481047
overload="int_out",
10491048
)
10501049
xs_slice_instructions = []
1051-
for i, x in enumerate(xs):
1050+
for x in xs:
10521051
kernel = Instruction(
10531052
KernelCall(
10541053
op_index=op_index_select,

0 commit comments

Comments
 (0)