Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo in exercise part12-06_ballplayers template for assists field in BallPlayers class #75

Open
afast92 opened this issue Sep 27, 2024 · 0 comments

Comments

@afast92
Copy link

afast92 commented Sep 27, 2024

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant