Don't call super with *args

This commit is contained in:
Grant Sanderson 2016-01-09 20:09:37 -08:00
parent ff5075ce7d
commit d5e3392f31

View file

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