Skip to content

Commit 64f59bc

Browse files
committed
mx_??? pep8 fixes
1 parent 3d9b73c commit 64f59bc

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

mx.graalpython/mx_graalpython_benchmark.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
2323
# OF THE POSSIBILITY OF SUCH DAMAGE.
2424
from __future__ import print_function
25-
import argparse
26-
import re
25+
2726
import os
27+
import re
2828
from abc import ABCMeta, abstractproperty, abstractmethod
29-
from os.path import join, exists
29+
from os.path import join
30+
3031
import mx
3132
from mx_benchmark import StdOutRule, VmRegistry, java_vm_registry, Vm, GuestVm, VmBenchmarkSuite
3233
from mx_graalpython_bench_param import benchmarks_list
@@ -48,7 +49,7 @@
4849
VM_NAME_CPYTHON = "cpython"
4950
VM_NAME_PYPY = "pypy"
5051
GROUP_GRAAL = "Graal"
51-
SUBGROUP_TRUFFLE_PYTHON = "graalpython"
52+
SUBGROUP_GRAAL_PYTHON = "graalpython"
5253
PYTHON_VM_REGISTRY_NAME = "Python"
5354
CONFIGURATION_DEFAULT = "default"
5455
_HRULE = ''.join(['-' for _ in range(120)])
@@ -242,7 +243,7 @@ def name(self):
242243
return self._name
243244

244245
def subgroup(self):
245-
return SUBGROUP_TRUFFLE_PYTHON
246+
return SUBGROUP_GRAAL_PYTHON
246247

247248
def get_vm_registry(self):
248249
return python_vm_registry

0 commit comments

Comments
 (0)