From 5e757f186142e5098ddf46e787d27ec93fbfaad2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Fri, 5 Apr 2024 15:07:46 +0200 Subject: [PATCH] Split docstring on multiple lines to ease the reading. --- argos/commands.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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