@@ -116,7 +116,10 @@ def _network_callback(ctx, param, val):
116
116
callback = env_file_callback ,
117
117
is_eager = True ,
118
118
expose_value = False ,
119
- help = "Path to a .env file (repeatable; last wins). Allowed: .env, .env.<suffix>, and *.env." ,
119
+ help = (
120
+ "Path to a .env file (repeatable; last wins). "
121
+ "Allowed: .env, .env.<suffix>, and <prefix>.env."
122
+ ),
120
123
)
121
124
@click .argument ("bot" , required = False , callback = bot_path_callback )
122
125
def run (cli_ctx , account , runner_class , recorder_class , max_exceptions , debug , bot ):
@@ -238,7 +241,10 @@ def build(generate, tag_base, version, push, path):
238
241
callback = env_file_callback ,
239
242
is_eager = True ,
240
243
expose_value = False ,
241
- help = "Path to a .env file (repeatable; last wins). Allowed: .env, .env.<suffix>, and *.env." ,
244
+ help = (
245
+ "Path to a .env file (repeatable; last wins). "
246
+ "Allowed: .env, .env.<suffix>, and <prefix>.env."
247
+ ),
242
248
)
243
249
@click .argument ("bot" , required = False , callback = bot_path_callback )
244
250
def worker (cli_ctx , account , workers , max_exceptions , shutdown_timeout , debug , bot ):
0 commit comments