Skip to content

Commit f1dee6e

Browse files
committed
fix: add missing str formatting operator
1 parent 7840620 commit f1dee6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/semi_supervised/plot_label_propagation_digits_active_learning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
cm = confusion_matrix(true_labels, predicted_labels,
5757
labels=lp_model.classes_)
5858

59-
print('Iteration %i %s' (i, 70 * '_'))
59+
print('Iteration %i %s' % (i, 70 * '_'))
6060
print("Label Spreading model: %d labeled & %d unlabeled (%d total)"
6161
% (n_labeled_points, n_total_samples - n_labeled_points, n_total_samples))
6262

0 commit comments

Comments
 (0)