You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The exercise instructions specify a class BallPlayer with a field self.assists, but the exercise template from the TMC plugin gives a class BallPlayer with a field self.passes.
The exercise template contains the definition for a class named BallPlayer. It has the following public attributes:
name
shirt number number
scored goals goals
assists completed assists
minutes played minutes
class BallPlayer:
def init(self, name: str, number: int, goals: int, passes: int, minutes: int):
self.name = name
self.number = number
self.goals = goals
self.passes = passes
self.minutes = minutes
The text was updated successfully, but these errors were encountered:
The exercise instructions specify a class BallPlayer with a field self.assists, but the exercise template from the TMC plugin gives a class BallPlayer with a field self.passes.
class BallPlayer:
def init(self, name: str, number: int, goals: int, passes: int, minutes: int):
self.name = name
self.number = number
self.goals = goals
self.passes = passes
self.minutes = minutes
The text was updated successfully, but these errors were encountered: