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:
Lukasz Mrugala 2024-11-27 18:56:43 +00:00 committed by Carles Cufí
commit 63dd36993c

View file

@ -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):