(
name: str = typer.Argument(
...,
help="The name of the new branch",
)
)
| 32 | |
| 33 | |
| 34 | def branch( |
| 35 | name: str = typer.Argument( |
| 36 | ..., |
| 37 | help="The name of the new branch", |
| 38 | ) |
| 39 | ): |
| 40 | from git_sim.branch import Branch |
| 41 | |
| 42 | scene = Branch(name=name) |
| 43 | handle_animations(scene=scene) |
| 44 | |
| 45 | |
| 46 | def checkout( |
nothing calls this directly
no test coverage detected