Skip to content

Commit 340ba76

Browse files
committed
more sensible cleanup
1 parent 097dcfc commit 340ba76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def do_run_python(args, extra_vm_args=None, env=None, jdk=None, extra_dists=None
165165
check_vm()
166166

167167
if minimal:
168-
x, *__ = *[x for x in SUITE.dists if x.name == "GRAALPYTHON"] # pylint: disable=unused-variable;
168+
x = [x for x in SUITE.dists if x.name == "GRAALPYTHON"][0]
169169
dists = [dep for dep in x.deps if dep.isJavaProject() or dep.isJARDistribution()]
170170
else:
171171
dists = ['GRAALPYTHON']

0 commit comments

Comments
 (0)