Coverage for src / repo_sync_kitty / commands / check.py: 100%

9 statements  

« prev     ^ index     » next       coverage.py v7.13.0, created at 2025-12-23 09:31 -0500

1"""Check command: validate manifest file.""" 

2 

3from pathlib import Path 

4from typing import Annotated 

5 

6import typer 

7from rich.console import Console 

8 

9console = Console() 

10 

11 

12def check( 

13 manifest: Annotated[ 

14 Path | None, 

15 typer.Option("--manifest", "-m", help="Path to manifest.toml file"), 

16 ] = None, 

17) -> None: 

18 """Validate the manifest file.""" 

19 console.print("[yellow]check command not yet implemented[/yellow]") 

20 if manifest: 

21 console.print(f" manifest: {manifest}")