diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-10-12 16:25:39 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-10-12 16:25:39 -0500 |
commit | 2328b2bd3addc7034e2a7d14dc39e39b7627df82 (patch) | |
tree | fc541ac7baec5464e89638e6753b28bdf6fbd7bc | |
parent | 80fe5be90664faf03992c160055b9fa061eb74af (diff) |
call super __init__() in SpeedRunner
-rw-r--r-- | pokemontools/vba/autoplayer.py | 2 |
1 files changed, 2 insertions, 0 deletions
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: |