Skip to content

Commit c602c1b

Browse files
authored
Fix double-space in exception message (GH-29955)
1 parent 7989e9d commit c602c1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/statistics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ def geometric_mean(data):
463463
return exp(fmean(map(log, data)))
464464
except ValueError:
465465
raise StatisticsError('geometric mean requires a non-empty dataset '
466-
' containing positive numbers') from None
466+
'containing positive numbers') from None
467467

468468

469469
def harmonic_mean(data, weights=None):

0 commit comments

Comments
 (0)