fixed a typo

gol
Daniel Knüttel 2018-11-28 17:10:10 +01:00
parent 9d3c30c2db
commit d6cca8a716
1 changed files with 1 additions and 1 deletions

View File

@ -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):