Refactor so constants are used everywhere

This commit is contained in:
Chris Hill-Scott
2020-03-24 15:36:39 +00:00
parent 55e377baf6
commit 30a3418473
6 changed files with 12 additions and 13 deletions

View File

@@ -6,12 +6,8 @@ from bs4 import BeautifulSoup, element
from flask import url_for
from freezegun import freeze_time
from app.main.views.feedback import (
PROBLEM_TICKET_TYPE,
QUESTION_TICKET_TYPE,
has_live_services,
in_business_hours,
)
from app.main.views.feedback import has_live_services, in_business_hours
from app.models.feedback import PROBLEM_TICKET_TYPE, QUESTION_TICKET_TYPE
from tests.conftest import normalize_spaces