mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Don't call super with *args
This commit is contained in:
parent
ff5075ce7d
commit
d5e3392f31
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ class Mortimer(PiCreature):
|
|||
"color" : DARK_BROWN
|
||||
}
|
||||
def __init__(self, **kwargs):
|
||||
PiCreature.__init__(self, *args, **kwargs)
|
||||
PiCreature.__init__(self, **kwargs)
|
||||
# self.highlight(DARK_BROWN)
|
||||
self.give_straight_face()
|
||||
self.rotate(np.pi, UP)
|
||||
|
|
Loading…
Add table
Reference in a new issue