Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Create, read, edit, and format Excel (.xlsx) spreadsheets with formulas, color coding, and financial model standards
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
scripts/office/validators/__init__.py
1"""2Validation modules for Word document processing.3"""45from .base import BaseSchemaValidator6from .docx import DOCXSchemaValidator7from .pptx import PPTXSchemaValidator8from .redlining import RedliningValidator910__all__ = [11"BaseSchemaValidator",12"DOCXSchemaValidator",13"PPTXSchemaValidator",14"RedliningValidator",15]16