formatting, cleanup from rebase
This commit is contained in:
parent
47b07c2bb5
commit
5db4d9bab3
@ -1,6 +1,5 @@
|
|||||||
from atst.models import CSPRole
|
from atst.models import CSPRole
|
||||||
from atst.utils.localization import translate, translate_duration
|
from atst.utils.localization import translate, translate_duration
|
||||||
from atst.models.environment_role import CSPRole
|
|
||||||
|
|
||||||
|
|
||||||
SERVICE_BRANCHES = [
|
SERVICE_BRANCHES = [
|
||||||
@ -219,6 +218,6 @@ REQUIRED_DISTRIBUTIONS = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
ENV_ROLES = [(role.value, role.value) for role in CSPRole] + [(None, "No access")]
|
ENV_ROLES = [(role.value, role.value) for role in CSPRole] + [(None, "No access")]
|
||||||
FORMATTED_ENV_ROLES = [(role.value, "- {} -".format(role.value)) for role in CSPRole] + [
|
FORMATTED_ENV_ROLES = [
|
||||||
(None, "- No Access -")
|
(role.value, "- {} -".format(role.value)) for role in CSPRole
|
||||||
]
|
] + [(None, "- No Access -")]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user