Skip to content

Commit

Permalink
Recover Rating.__long__()
Browse files Browse the repository at this point in the history
  • Loading branch information
sublee committed Apr 2, 2021
1 parent c45474d commit cd616d6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions trueskill/__init__.py
Expand Up @@ -124,6 +124,9 @@ def __init__(self, mu=None, sigma=None):
def __int__(self):
return int(self.mu)

def __long__(self):
return long(self.mu)

def __float__(self):
return float(self.mu)

Expand Down

0 comments on commit cd616d6

Please sign in to comment.