fixed a typo
This commit is contained in:
2
ex_17.py
2
ex_17.py
@@ -36,7 +36,7 @@ class FootballPlayer(Person):
|
|||||||
|
|
||||||
class StudenWhoHappensToPlayFootball(Student, FootballPlayer):
|
class StudenWhoHappensToPlayFootball(Student, FootballPlayer):
|
||||||
def __init__(self, name, age, birthplace, semester, studium, football_team):
|
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)
|
FootballPlayer.__init__(self, name, age, birthplace, football_team)
|
||||||
|
|
||||||
def about_myself(self):
|
def about_myself(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user