Skip to content

Commit 63dd369

Browse files
LukaszMrugalacarlescufi
authored andcommitted
scripts: Remove useless PyLint suppression
Consider using with suppression became obsolte and should be removed. Signed-off-by: Lukasz Mrugala <[email protected]>
1 parent 89d4aa8 commit 63dd369

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

scripts/pylib/twister/twisterlib/jobserver.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ def popen(self, argv, **kwargs):
6262
kwargs["env"].update(self.env())
6363
kwargs["pass_fds"] += self.pass_fds()
6464

65-
return subprocess.Popen( # pylint:disable=consider-using-with
66-
argv, **kwargs
67-
)
65+
return subprocess.Popen(argv, **kwargs)
6866

6967

7068
class GNUMakeJobClient(JobClient):

0 commit comments

Comments
 (0)