Skip to content

Commit 74fa976

Browse files
committed
Use triple-quoted string
1 parent 128989f commit 74fa976

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pytest_asyncio/plugin.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,10 @@ def _get_asyncio_debug(config: Config) -> bool:
236236
return val == "true"
237237

238238

239-
_INVALID_LOOP_FACTORIES = (
240-
"pytest_asyncio_loop_factories must return a non-empty mapping of factory names "
241-
"to callables."
242-
)
239+
_INVALID_LOOP_FACTORIES = """\
240+
pytest_asyncio_loop_factories must return a non-empty mapping of \
241+
factory names to callables.
242+
"""
243243

244244

245245
def _collect_hook_loop_factories(

0 commit comments

Comments
 (0)