(
remote: str = typer.Argument(
default=None,
help="The name of the remote to fetch from",
),
branch: str = typer.Argument(
default=None,
help="The name of the branch to fetch",
),
)
| 140 | |
| 141 | |
| 142 | def fetch( |
| 143 | remote: str = typer.Argument( |
| 144 | default=None, |
| 145 | help="The name of the remote to fetch from", |
| 146 | ), |
| 147 | branch: str = typer.Argument( |
| 148 | default=None, |
| 149 | help="The name of the branch to fetch", |
| 150 | ), |
| 151 | ): |
| 152 | from git_sim.fetch import Fetch |
| 153 | |
| 154 | scene = Fetch(remote=remote, branch=branch) |
| 155 | handle_animations(scene=scene) |
| 156 | |
| 157 | |
| 158 | def init(): |
nothing calls this directly
no test coverage detected