Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for fix_pages (0.18 seconds)

  1. scripts/translation_fixer.py

            res = process_one_page(doc_path)
            all_good = all_good and res
    
        if not all_good:
            raise typer.Exit(code=1)
    
    
    @cli.command()
    def fix_pages(
        doc_paths: Annotated[
            list[Path],
            typer.Argument(help="List of paths to documents."),
        ],
    ):
        all_good = True
        for path in doc_paths:
            res = process_one_page(path)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 3.2K bytes
    - Click Count (0)
Back to Top