Skip to content

Commit 819b322

Browse files
committed
P3K one more iteritems
1 parent 57b86fc commit 819b322

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarks/bench_plot_lasso_path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def compute_bench(samples_range, features_range):
9292

9393
fig = plt.figure()
9494
i = 1
95-
for c, (label, timings) in zip('bcry', sorted(results.iteritems())):
95+
for c, (label, timings) in zip('bcry', sorted(results.items())):
9696
ax = fig.add_subplot(2, 2, i, projection='3d')
9797
X, Y = np.meshgrid(samples_range, features_range)
9898
Z = np.asarray(timings).reshape(samples_range.shape[0],

0 commit comments

Comments
 (0)