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

@@ -3,13 +3,8 @@ import itertools
from notifications_utils.recipients import allowed_to_send_to
from app.dao.services_dao import dao_fetch_service_by_id
from app.models import (
KEY_TYPE_NORMAL,
KEY_TYPE_TEAM,
KEY_TYPE_TEST,
GuestListRecipientType,
ServiceGuestList,
)
from app.enums import GuestListRecipientType
from app.models import KEY_TYPE_NORMAL, KEY_TYPE_TEAM, KEY_TYPE_TEST, ServiceGuestList
def get_recipients_from_request(request_json, key, type):