Skip to content

Commit 6f1de63

Browse files
committed
disable pylint warning properly
1 parent 109a7ab commit 6f1de63

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
@@ -2020,10 +2020,10 @@ def clean(self, forBuild=False):
20202020

20212021

20222022
class GraalpythonProject(mx.ArchivableProject):
2023-
def __init__(self, suite, name, subDir, srcDirs, deps, workingSets, d, theLicense=None, **kwargs):
2023+
def __init__(self, suite, name, subDir, srcDirs, deps, workingSets, d, theLicense=None, **kwargs): # pylint: disable=super-init-not-called
20242024
context = 'project ' + name
20252025
self.buildDependencies = mx.Suite._pop_list(kwargs, 'buildDependencies', context)
2026-
mx.Project.__init__(self, suite, name, subDir, srcDirs, deps, workingSets, d, theLicense, **kwargs) # pylint: disable=super-init-not-called;
2026+
mx.Project.__init__(self, suite, name, subDir, srcDirs, deps, workingSets, d, theLicense, **kwargs)
20272027

20282028
def getOutput(self, replaceVar=mx_subst.results_substitutions):
20292029
return self.get_output_root()

0 commit comments

Comments
 (0)