summaryrefslogtreecommitdiff
path: root/src/tox/pytest.py
diff options
context:
space:
mode:
authorBernát Gábor <gaborjbernat@gmail.com>2021-12-11 09:50:58 +0000
committerBernát Gábor <gaborjbernat@gmail.com>2021-12-11 09:50:58 +0000
commit9f7001bf95aa859449ef7ec7253274ec8d11bb33 (patch)
treeaef5473b5a8fcd7c5d62645f22892e96217e22b5 /src/tox/pytest.py
parent1ad255d5129a7c634dc7a7f8cbae8a6bd93774c7 (diff)
downloadtox-git-9f7001bf95aa859449ef7ec7253274ec8d11bb33.tar.gz
Bump linters
Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
Diffstat (limited to 'src/tox/pytest.py')
-rw-r--r--src/tox/pytest.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tox/pytest.py b/src/tox/pytest.py
index 478eb41e..2f4df847 100644
--- a/src/tox/pytest.py
+++ b/src/tox/pytest.py
@@ -198,10 +198,10 @@ class ToxProject:
def exit_code(self) -> int | None:
return self._exit_code
- def wait(self, timeout: float | None = None) -> int | None:
+ def wait(self, timeout: float | None = None) -> int | None: # noqa: U100
return self._exit_code
- def write_stdin(self, content: str) -> None:
+ def write_stdin(self, content: str) -> None: # noqa: U100
return None # pragma: no cover
def interrupt(self) -> None:
@@ -224,9 +224,9 @@ class ToxProject:
def __exit__(
self,
- exc_type: type[BaseException] | None,
- exc_val: BaseException | None,
- exc_tb: TracebackType | None,
+ exc_type: type[BaseException] | None, # noqa: U100
+ exc_val: BaseException | None, # noqa: U100
+ exc_tb: TracebackType | None, # noqa: U100
) -> None:
pass