mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 22:03:01 +08:00
Don't call super with *args
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user