Skip to content

Commit 95a98f6

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 45313f7 commit 95a98f6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pytest_asyncio/plugin.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,9 @@ def pytest_report_header(config: Config) -> list[str]:
216216
"""Add asyncio config to pytest header."""
217217
mode = _get_asyncio_mode(config)
218218
default_loop_scope = config.getini("asyncio_default_fixture_loop_scope")
219-
return [f"asyncio: mode={mode}, asyncio_default_fixture_loop_scope={default_loop_scope}"]
219+
return [
220+
f"asyncio: mode={mode}, asyncio_default_fixture_loop_scope={default_loop_scope}"
221+
]
220222

221223

222224
def _preprocess_async_fixtures(

0 commit comments

Comments
 (0)