Browse Source

Fix typo

master
Dimitri Merejkowsky 5 years ago
parent
commit
803a71d8bc
1 changed files with 1 additions and 1 deletions
  1. +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)
```

#