Skip to content

Commit 39c46f5

Browse files
authored
Update doc/data/messages/b/bad-super-call/bad.py
1 parent 94d8ecd commit 39c46f5

File tree

1 file changed

+1
-1
lines changed
  • doc/data/messages/b/bad-super-call

1 file changed

+1
-1
lines changed

doc/data/messages/b/bad-super-call/bad.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ class Tree:
88

99
class Cat(Animal):
1010
def __init__(self):
11-
super(Fish, self).__init__() # [bad-super-call]
11+
super(Tree, self).__init__() # [bad-super-call]
1212
super(Animal, self).__init__()

0 commit comments

Comments
 (0)