(
l: bool = typer.Option(
False,
"-l",
"--list",
help="List existing local repo config settings",
),
settings: List[str] = typer.Argument(
default=None,
help="The names and values of one or more config settings to set",
),
)
| 122 | |
| 123 | |
| 124 | def config( |
| 125 | l: bool = typer.Option( |
| 126 | False, |
| 127 | "-l", |
| 128 | "--list", |
| 129 | help="List existing local repo config settings", |
| 130 | ), |
| 131 | settings: List[str] = typer.Argument( |
| 132 | default=None, |
| 133 | help="The names and values of one or more config settings to set", |
| 134 | ), |
| 135 | ): |
| 136 | from git_sim.config import Config |
| 137 | |
| 138 | scene = Config(l=l, settings=settings) |
| 139 | handle_animations(scene=scene) |
| 140 | |
| 141 | |
| 142 | def fetch( |
nothing calls this directly
no test coverage detected