- Standardize quote style (single to double quotes) - Reorder and group imports alphabetically - Fix line breaks and indentation for consistency - Apply PEP 8 formatting standards Also updated Makefile to exclude both venv and .venv from code quality checks. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
462 B
Python
19 lines
462 B
Python
# models/schema/__init__.py
|
|
"""API models package - Pydantic models for request/response validation."""
|
|
|
|
# Import API model modules
|
|
from . import (auth, base, inventory, marketplace_import_job,
|
|
marketplace_product, stats, vendor)
|
|
# Common imports for convenience
|
|
from .base import * # Base Pydantic models
|
|
|
|
__all__ = [
|
|
"base",
|
|
"auth",
|
|
"marketplace_product",
|
|
"inventory",
|
|
"vendor",
|
|
"marketplace_import_job",
|
|
"stats",
|
|
]
|