Skip to content

Commit c5f677b

Browse files
committed
style: fix formatting per pre-commit hooks
1 parent 61614c3 commit c5f677b

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/together/cli/api/endpoints.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,17 @@ def fetch_and_print_hardware_options(
323323
if hardware.availability is not None
324324
and hardware.availability.status == "available"
325325
]
326-
message = f"Available hardware options for model '{model}':" if model else "Available hardware options:"
326+
message = (
327+
f"Available hardware options for model '{model}':"
328+
if model
329+
else "Available hardware options:"
330+
)
327331
else:
328-
message = f"Hardware options for model '{model}':" if model else "All hardware options:"
332+
message = (
333+
f"Hardware options for model '{model}':"
334+
if model
335+
else "All hardware options:"
336+
)
329337

330338
click.echo(message, err=True)
331339
click.echo("", err=True)

0 commit comments

Comments
 (0)