diff --git a/argos/commands.py b/argos/commands.py index c83e550..ca87647 100644 --- a/argos/commands.py +++ b/argos/commands.py @@ -117,8 +117,11 @@ def validate_max_results(ctx, param, value): @click.option( "--max-lock-seconds", default=100, - help="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)", + help=( + "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, ) @coroutine