Getting imports right to use app.enums

Signed-off-by: Cliff Hill <Clifford.hill@gsa.gov>
This commit is contained in:
Cliff Hill
2024-01-10 12:45:03 -05:00
parent 3982f061b6
commit 985ad27b3e
13 changed files with 22 additions and 21 deletions

View File

@@ -13,8 +13,9 @@ from app.dao.templates_dao import (
dao_redact_template,
dao_update_template,
)
from app.enums import TemplateType
from app.errors import InvalidRequest, register_errors
from app.models import Template, TemplateType
from app.models import Template
from app.notifications.validators import check_reply_to, service_has_permission
from app.schema_validation import validate
from app.schemas import (

View File

@@ -1,4 +1,5 @@
from app.models import TEMPLATE_PROCESS_TYPE, TemplateType
from app.enums import TemplateType
from app.models import TEMPLATE_PROCESS_TYPE
from app.schema_validation.definitions import nullable_uuid, uuid
post_create_template_schema = {