From 51aa4baec1e5d9d45fa69acc25d68cc963ca7309 Mon Sep 17 00:00:00 2001 From: Juice Man <92176188+sbOogway@users.noreply.github.com> Date: Sat, 22 Mar 2025 14:22:32 +0100 Subject: [PATCH] Update mathematics.py --- trueskill/mathematics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trueskill/mathematics.py b/trueskill/mathematics.py index 6184513..2de7dcd 100644 --- a/trueskill/mathematics.py +++ b/trueskill/mathematics.py @@ -54,7 +54,7 @@ def mu(self): @property def sigma(self): - """A property which returns the the square root of the variance.""" + """A property which returns the square root of the variance.""" return math.sqrt(1 / self.pi) if self.pi else inf def __mul__(self, other):