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):