Files
AstrBot/types/jsonschema.pyi
LIghtJUNction 7ff6df9853 chore: add type stubs and update pyproject.toml configuration
- Add type stubs for external packages (faiss, psutil, readability, etc.)
- Move typings to types/ directory
- Update pyproject.toml with mypy plugin configuration
- Add project URLs (Homepage, Repository)
- Update python version to 3.12 in pyright config
2026-03-31 20:14:35 +08:00

7 lines
163 B
Python

from typing import ClassVar
class Draft202012Validator:
META_SCHEMA: ClassVar[dict[str, object]]
def validate(instance: object, schema: object) -> None: ...