Skip to content

Commit 5eaea00

Browse files
code style
1 parent d35e770 commit 5eaea00

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/together/cli/api/finetune.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -376,17 +376,17 @@ def create(
376376
training_type="lora" if lora else "full",
377377
training_method=training_method,
378378
)
379-
379+
380380
price = click.style(
381381
f"${finetune_price_estimation_result.estimated_total_price:.2f}",
382382
bold=True,
383383
)
384-
384+
385385
if not finetune_price_estimation_result.allowed_to_proceed:
386386
warning = click.style(_WARNING_MESSAGE_INSUFFICIENT_FUNDS, fg="red", bold=True)
387387
else:
388388
warning = ""
389-
389+
390390
confirmation_message = _CONFIRMATION_MESSAGE.format(
391391
price=price,
392392
warning=warning,
@@ -403,9 +403,7 @@ def create(
403403
response.created_at, "%Y-%m-%dT%H:%M:%S.%f%z"
404404
)
405405
# created_at reports UTC time, we use .astimezone() to convert to local time
406-
formatted_time = created_time.astimezone().strftime(
407-
"%m/%d/%Y, %H:%M:%S"
408-
)
406+
formatted_time = created_time.astimezone().strftime("%m/%d/%Y, %H:%M:%S")
409407
report_string += f" at {formatted_time}"
410408
rprint(report_string)
411409
else:

0 commit comments

Comments
 (0)