@@ -469,7 +469,7 @@ def select_provider_from_configs(
469
469
gpu_name = selected_gpu .gpu_type .lower ().split ("_" )[0 ]
470
470
default_name = f"{ gpu_name } -{ selected_gpu .gpu_count } "
471
471
name = typer .prompt (
472
- "Pod name (alphanumeric and dashes only, must contain at least " " 1 letter)" ,
472
+ "Pod name (alphanumeric and dashes only, must contain at least 1 letter)" ,
473
473
default = default_name ,
474
474
)
475
475
if (
@@ -519,7 +519,7 @@ def select_provider_from_configs(
519
519
)
520
520
if vcpus is None or vcpus < min_vcpus or vcpus > max_vcpus :
521
521
console .print (
522
- f"[red]vCPU count must be between { min_vcpus } and " f" { max_vcpus } [/red]"
522
+ f"[red]vCPU count must be between { min_vcpus } and { max_vcpus } [/red]"
523
523
)
524
524
raise typer .Exit (1 )
525
525
@@ -538,7 +538,7 @@ def select_provider_from_configs(
538
538
)
539
539
if memory is None or memory < min_memory or memory > max_memory :
540
540
console .print (
541
- f"[red]Memory must be between { min_memory } GB and " f" { max_memory } GB[/red]"
541
+ f"[red]Memory must be between { min_memory } GB and { max_memory } GB[/red]"
542
542
)
543
543
raise typer .Exit (1 )
544
544
@@ -641,11 +641,11 @@ def select_provider_from_configs(
641
641
642
642
console .print (f"\n [green]Successfully created pod { pod .id } [/green]" )
643
643
console .print (
644
- f"\n [blue]Use 'prime pods status { pod .id } ' to check the pod " " status[/blue]"
644
+ f"\n [blue]Use 'prime pods status { pod .id } ' to check the pod status[/blue]"
645
645
)
646
646
except AttributeError :
647
647
console .print (
648
- "[red]Error: Failed to create pod - invalid API client " " configuration[/red]"
648
+ "[red]Error: Failed to create pod - invalid API client configuration[/red]"
649
649
)
650
650
raise typer .Exit (1 )
651
651
else :
0 commit comments