This website works better with JavaScript.
Home
Explore
Help
Sign In
E2L_Ivry
/
cours-python
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fix typo
master
Dimitri Merejkowsky
5 years ago
parent
265e16f045
commit
803a71d8bc
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
sessions/python-09.md
+ 1
- 1
sessions/python-09.md
View File
@@ -343,7 +343,7 @@ class Pet(Animal):
# All dogs are pets
class Dog(Pet):
def __init__(self, name):
super().init("dog", name)
super().
__
init
__
("dog", name)
```
#