Skip to content

Commit 36c52e5

Browse files
committed
Add missing call to parent constructor
1 parent 496ff18 commit 36c52e5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

mx.graalpython/mx_graalpython_benchmark.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ class AbstractPythonVm(Vm):
8181
__metaclass__ = ABCMeta
8282

8383
def __init__(self, config_name, options=None):
84+
super(AbstractPythonVm, self).__init__()
8485
self._config_name = config_name
8586
self._options = options
8687

@@ -256,6 +257,7 @@ def with_host_vm(self, host_vm):
256257

257258
class PythonBenchmarkSuite(VmBenchmarkSuite, AveragingBenchmarkMixin):
258259
def __init__(self, name, bench_path, benchmarks, python_path=None):
260+
super(PythonBenchmarkSuite, self).__init__()
259261
self._name = name
260262
self._python_path = python_path
261263
self._harness_path = HARNESS_PATH

0 commit comments

Comments
 (0)