(
url: str = typer.Argument(
...,
help="The web URL or filesystem path of the Git repo to clone",
),
path: str = typer.Argument(
default=".",
help="The web URL or filesystem path of the Git repo to clone",
),
)
| 87 | |
| 88 | |
| 89 | def clone( |
| 90 | url: str = typer.Argument( |
| 91 | ..., |
| 92 | help="The web URL or filesystem path of the Git repo to clone", |
| 93 | ), |
| 94 | path: str = typer.Argument( |
| 95 | default=".", |
| 96 | help="The web URL or filesystem path of the Git repo to clone", |
| 97 | ), |
| 98 | ): |
| 99 | from git_sim.clone import Clone |
| 100 | |
| 101 | scene = Clone(url=url, path=path) |
| 102 | handle_animations(scene=scene) |
| 103 | |
| 104 | |
| 105 | def commit( |
nothing calls this directly
no test coverage detected