From d6cca8a716232a521eab59c27d0c0eb3e8302c6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kn=C3=BCttel?= Date: Wed, 28 Nov 2018 17:10:10 +0100 Subject: [PATCH] fixed a typo --- ex_17.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ex_17.py b/ex_17.py index ed3e0e9..b5e8032 100644 --- a/ex_17.py +++ b/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):