|
72 | 72 | SUGGESTED_FLAVORS = [item.value for item in SpaceHardware if item.value != "zero-a10g"] |
73 | 73 |
|
74 | 74 |
|
75 | | -jobs_app = typer.Typer(help="Run and manage Jobs on the Hub.") |
| 75 | +jobs_app = typer.Typer(help="Run and manage Jobs on the Hub.", rich_markup_mode=None) |
76 | 76 |
|
77 | 77 |
|
78 | 78 | @jobs_app.command("run", help="Run a Job") |
@@ -359,7 +359,9 @@ def jobs_cancel( |
359 | 359 | api.cancel_job(job_id=job_id, namespace=namespace) |
360 | 360 |
|
361 | 361 |
|
362 | | -uv_app = typer.Typer(help="Run UV scripts (Python with inline dependencies) on HF infrastructure") |
| 362 | +uv_app = typer.Typer( |
| 363 | + help="Run UV scripts (Python with inline dependencies) on HF infrastructure", rich_markup_mode=None |
| 364 | +) |
363 | 365 | jobs_app.add_typer(uv_app, name="uv") |
364 | 366 |
|
365 | 367 |
|
@@ -480,7 +482,7 @@ def jobs_uv_run( |
480 | 482 | print(log) |
481 | 483 |
|
482 | 484 |
|
483 | | -scheduled_app = typer.Typer(help="Create and manage scheduled Jobs on the Hub.") |
| 485 | +scheduled_app = typer.Typer(help="Create and manage scheduled Jobs on the Hub.", rich_markup_mode=None) |
484 | 486 | jobs_app.add_typer(scheduled_app, name="scheduled") |
485 | 487 |
|
486 | 488 |
|
@@ -750,7 +752,9 @@ def scheduled_resume( |
750 | 752 | api.resume_scheduled_job(scheduled_job_id=scheduled_job_id, namespace=namespace) |
751 | 753 |
|
752 | 754 |
|
753 | | -scheduled_uv_app = typer.Typer(help="Schedule UV scripts (Python with inline dependencies) on HF infrastructure") |
| 755 | +scheduled_uv_app = typer.Typer( |
| 756 | + help="Schedule UV scripts (Python with inline dependencies) on HF infrastructure", rich_markup_mode=None |
| 757 | +) |
754 | 758 | scheduled_app.add_typer(scheduled_uv_app, name="uv") |
755 | 759 |
|
756 | 760 |
|
|
0 commit comments