Ver a proveniência

Fix typo

master
Dimitri Merejkowsky há 5 anos
ascendente
cometimento
803a71d8bc
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      sessions/python-09.md

+ 1
- 1
sessions/python-09.md Ver ficheiro

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

#