Rename schema and test files for consistency
Renamed `event_theme` and `test_user_schema` file paths and imports to follow consistent plural naming conventions. This improves code clarity and aligns file and import naming across the project.
This commit is contained in:
@@ -3,7 +3,7 @@ from sqlalchemy.orm import Session
|
||||
|
||||
from app.crud.base import CRUDBase
|
||||
from app.models.event_theme import EventTheme
|
||||
from app.schemas.event_theme import EventThemeCreate, EventThemeUpdate
|
||||
from app.schemas.event_themes import EventThemeCreate, EventThemeUpdate
|
||||
|
||||
|
||||
class CRUDEventTheme(CRUDBase[EventTheme, EventThemeCreate, EventThemeUpdate]):
|
||||
|
||||
Reference in New Issue
Block a user