File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments