Skip to content

Commit 25254d4

Browse files
Fix double-space in exception message (GH-29955) (GH-29983)
(cherry picked from commit c602c1b) Co-authored-by: Ned Batchelder <[email protected]> Co-authored-by: Ned Batchelder <[email protected]>
1 parent db42809 commit 25254d4

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
@@ -361,7 +361,7 @@ def geometric_mean(data):
361361
return exp(fmean(map(log, data)))
362362
except ValueError:
363363
raise StatisticsError('geometric mean requires a non-empty dataset '
364-
' containing positive numbers') from None
364+
'containing positive numbers') from None
365365

366366

367367
def harmonic_mean(data):

0 commit comments

Comments
 (0)