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["pass_fds"] += self.pass_fds()
|
||||
|
||||
return subprocess.Popen( # pylint:disable=consider-using-with
|
||||
argv, **kwargs
|
||||
)
|
||||
return subprocess.Popen(argv, **kwargs)
|
||||
|
||||
|
||||
class GNUMakeJobClient(JobClient):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue