(env: Environment, repo: str | None, import_: bool)
| 252 | @pass_env |
| 253 | @handle_api_exception(logger) |
| 254 | def sync(env: Environment, repo: str | None, import_: bool): |
| 255 | config = ensure_auth_config(api_base_url=env.api_base_url, repo=repo) |
| 256 | run_sync(env, config, import_and_commit=import_) |
| 257 | env.logger.info("done") |
| 258 | |
| 259 | |
| 260 | @cli.command( |
nothing calls this directly
no test coverage detected