示例#1
0
 def points(self, round_name=None):
     """Returns the total number of points for the team.  Optional parameter for a round."""
     return score_mgr.team_points(self, round_name)
示例#2
0
 def points(self, round_name=None):
     """Returns the total number of points for the team.  Optional parameter for a round."""
     return score_mgr.team_points(self, round_name)
示例#3
0
 def current_round_points(self):
     """Returns the number of points for the current round."""
     current_round = challenge_mgr.get_round_name()
     return score_mgr.team_points(self, round_name=current_round)
示例#4
0
 def current_round_points(self):
     """Returns the number of points for the current round."""
     current_round = challenge_mgr.get_round_name()
     return score_mgr.team_points(self, round_name=current_round)