Skip to content

Commit a95532e

Browse files
committed
rm rubbish
1 parent 08a5582 commit a95532e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyg_lib/ops/scatter_reduce.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def fused_scatter_reduce(
120120
out = inputs.new(dim_size, len(reduce_list) * num_feats)
121121

122122
# Pre-processing: Take care of correct initialization for each reduction:
123-
for i, reduce in enumerate(reduce_list):
123+
for reduce in reduce_list:
124124
assert reduce in REDUCTIONS
125125
if reduce == 'min':
126126
fill_value = float('inf')

0 commit comments

Comments
 (0)