fixed a typo
This commit is contained in:
parent
9d3c30c2db
commit
d6cca8a716
2
ex_17.py
2
ex_17.py
|
@ -36,7 +36,7 @@ class FootballPlayer(Person):
|
|||
|
||||
class StudenWhoHappensToPlayFootball(Student, FootballPlayer):
|
||||
def __init__(self, name, age, birthplace, semester, studium, football_team):
|
||||
Student.__init__(self, name, age, birthplace, semester, studium,)
|
||||
Student.__init__(self, name, age, birthplace, semester, studium)
|
||||
FootballPlayer.__init__(self, name, age, birthplace, football_team)
|
||||
|
||||
def about_myself(self):
|
||||
|
|
Loading…
Reference in New Issue
Block a user