
- Fix unused imports in API endpoints - Add proper __all__ exports in model and schema modules - Add proper TYPE_CHECKING imports in models to prevent circular imports - Fix import order in migrations - Fix long lines in migration scripts - All ruff checks passing
7 lines
315 B
Python
7 lines
315 B
Python
from app.crud.crud_category import category
|
|
from app.crud.crud_inventory_transaction import inventory_transaction
|
|
from app.crud.crud_product import product
|
|
from app.crud.crud_supplier import supplier
|
|
from app.crud.crud_user import user
|
|
|
|
__all__ = ["category", "inventory_transaction", "product", "supplier", "user"] |