Skip to content

Commit af0a3ac

Browse files
author
William de Vazelhes
committed
FIX: fix parenthesis
1 parent 585b5d2 commit af0a3ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metric_learn/_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def check_tuples(tuples):
3838
"Expected 3D array, got 1D array instead:\ntuples={}.\n"
3939
"Reshape your data using tuples.reshape(1, -1, 1) if it contains a "
4040
"single tuple and the points in the tuple have a single "
41-
"feature.").format(tuples)
41+
"feature.".format(tuples))
4242
# If input is 2D raise error
4343
if len(tuples.shape) == 2:
4444
raise ValueError(

0 commit comments

Comments
 (0)