scripts: Remove useless PyLint suppression
Consider using with suppression became obsolte and should be removed. Signed-off-by: Lukasz Mrugala <lukaszx.mrugala@intel.com>
This commit is contained in:
parent
89d4aa8559
commit
63dd36993c
1 changed files with 1 additions and 3 deletions
|
|
@ -62,9 +62,7 @@ class JobClient:
|
||||||
kwargs["env"].update(self.env())
|
kwargs["env"].update(self.env())
|
||||||
kwargs["pass_fds"] += self.pass_fds()
|
kwargs["pass_fds"] += self.pass_fds()
|
||||||
|
|
||||||
return subprocess.Popen( # pylint:disable=consider-using-with
|
return subprocess.Popen(argv, **kwargs)
|
||||||
argv, **kwargs
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class GNUMakeJobClient(JobClient):
|
class GNUMakeJobClient(JobClient):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue