From 2328b2bd3addc7034e2a7d14dc39e39b7627df82 Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sat, 12 Oct 2013 16:25:39 -0500 Subject: call super __init__() in SpeedRunner --- pokemontools/vba/autoplayer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pokemontools/vba/autoplayer.py b/pokemontools/vba/autoplayer.py index 847ebbd..428b85d 100644 --- a/pokemontools/vba/autoplayer.py +++ b/pokemontools/vba/autoplayer.py @@ -60,6 +60,8 @@ class Runner(object): class SpeedRunner(Runner): def __init__(self, cry=None, config=None): + super(SpeedRunner, self).__init__() + self.cry = cry if not config: -- cgit v1.2.3