Parcourir la source

Fix typo

master
Dimitri Merejkowsky il y a 5 ans
Parent
révision
803a71d8bc
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      sessions/python-09.md

+ 1
- 1
sessions/python-09.md Voir le fichier

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

#