diff --git a/docs/changelog/2878.misc.rst b/docs/changelog/2878.misc.rst new file mode 100644 index 000000000..4b727e2a5 --- /dev/null +++ b/docs/changelog/2878.misc.rst @@ -0,0 +1 @@ +* Fix an incorrect type annotation for the ``color`` parameter in ``Spinner.finalize()``. diff --git a/src/tox/util/spinner.py b/src/tox/util/spinner.py index e816786ba..f95b4bf62 100644 --- a/src/tox/util/spinner.py +++ b/src/tox/util/spinner.py @@ -138,7 +138,7 @@ def fail(self, key: str) -> None: def skip(self, key: str) -> None: self.finalize(key, f"SKIP {self.outcome.skip}", Fore.YELLOW) - def finalize(self, key: str, status: str, color: int) -> None: + def finalize(self, key: str, status: str, color: str) -> None: start_at = self._envs.pop(key, None) if self.enabled: self.clear()