Skip to content

Commit 6554180

Browse files
committed
fix static tests
1 parent d9be7ef commit 6554180

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

exec_helpers/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def __init__(
272272
self.expected: typing.Sequence[ExitCodeT] = prep_expected
273273

274274

275-
class ParallelCallExceptions(ParallelCallProcessError):
275+
class ParallelCallExceptions(ParallelCallProcessError): # noqa: N818
276276
"""Exception raised during parallel call as result of exceptions."""
277277

278278
__slots__ = ("cmd", "exceptions")

exec_helpers/subprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class SubprocessExecuteAsyncResult(api.ExecuteAsyncResult):
6363
__slots__ = ()
6464

6565
@property
66-
def interface(self) -> subprocess.Popen[bytes]:
66+
def interface(self) -> subprocess.Popen[bytes]: # noqa: E1136
6767
"""Override original NamedTuple with proper typing.
6868
6969
:return: control interface

0 commit comments

Comments
 (0)