Skip to content

Commit 097dcfc

Browse files
committed
pylint fixes
1 parent 469e903 commit 097dcfc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 2 additions & 2 deletions
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"],
168+
x, *__ = *[x for x in SUITE.dists if x.name == "GRAALPYTHON"] # pylint: disable=unused-variable;
169169
dists = [dep for dep in x.deps if dep.isJavaProject() or dep.isJARDistribution()]
170170
else:
171171
dists = ['GRAALPYTHON']
@@ -2018,7 +2018,7 @@ class GraalpythonProject(mx.ArchivableProject):
20182018
def __init__(self, suite, name, subDir, srcDirs, deps, workingSets, d, theLicense=None, **kwargs):
20192019
context = 'project ' + name
20202020
self.buildDependencies = mx.Suite._pop_list(kwargs, 'buildDependencies', context)
2021-
mx.Project.__init__(self, suite, name, subDir, srcDirs, deps, workingSets, d, theLicense, **kwargs)
2021+
mx.Project.__init__(self, suite, name, subDir, srcDirs, deps, workingSets, d, theLicense, **kwargs) # pylint: disable=super-init-not-called;
20222022

20232023
def getOutput(self, replaceVar=mx_subst.results_substitutions):
20242024
return self.get_output_root()

0 commit comments

Comments
 (0)