Split docstring on multiple lines to ease the reading.

This commit is contained in:
Alexis Métaireau 2024-04-05 15:07:46 +02:00 committed by Luc Didry
parent 1d35ea22ea
commit 5e757f1861
No known key found for this signature in database
GPG key ID: EA868E12D0257E3C

View file

@ -117,8 +117,11 @@ def validate_max_results(ctx, param, value):
@click.option( @click.option(
"--max-lock-seconds", "--max-lock-seconds",
default=100, default=100,
help="The number of seconds after which a lock is considered stale, must be higher than 60 " help=(
"(the checks have a timeout value of 60 seconds)", "The number of seconds after which a lock is "
"considered stale, must be higher than 60 "
"(the checks have a timeout value of 60 seconds)"
),
callback=validate_max_lock_seconds, callback=validate_max_lock_seconds,
) )
@coroutine @coroutine