[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2024-04-06 21:22:03 +00:00
parent 4a1f432d44
commit 95fa59f782
1 changed files with 3 additions and 1 deletions

View File

@ -388,7 +388,9 @@ def pytest_make_collect_report(collector: Collector) -> CollectReport:
return list(collector.collect())
call = CallInfo.from_call(collect, "collect", reraise=(KeyboardInterrupt, SystemExit))
call = CallInfo.from_call(
collect, "collect", reraise=(KeyboardInterrupt, SystemExit)
)
longrepr: Union[None, Tuple[str, int, str], str, TerminalRepr] = None
if not call.excinfo:
outcome: Literal["passed", "skipped", "failed"] = "passed"