-
Notifications
You must be signed in to change notification settings - Fork 262
Closed
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
condensing import statements for brevity:
from app.crud import crud_users, crud_tiers, crud_rate_limits
instead of
from app.crud.crud_users import crud_users
from app.crud.crud_tier import crud_tiers
from app.crud.crud_rate_limit import crud_rate_limits
This makes imports more concise and groups related items together
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed