We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61614c3 commit c5f677bCopy full SHA for c5f677b
src/together/cli/api/endpoints.py
@@ -323,9 +323,17 @@ def fetch_and_print_hardware_options(
323
if hardware.availability is not None
324
and hardware.availability.status == "available"
325
]
326
- message = f"Available hardware options for model '{model}':" if model else "Available hardware options:"
+ message = (
327
+ f"Available hardware options for model '{model}':"
328
+ if model
329
+ else "Available hardware options:"
330
+ )
331
else:
- message = f"Hardware options for model '{model}':" if model else "All hardware options:"
332
333
+ f"Hardware options for model '{model}':"
334
335
+ else "All hardware options:"
336
337
338
click.echo(message, err=True)
339
click.echo("", err=True)
0 commit comments