From 2307e41aac88a4dc55e799ef94c141f500bbf6ef Mon Sep 17 00:00:00 2001 From: luis cielak Date: Thu, 13 Sep 2018 13:37:37 -0400 Subject: [PATCH] Reformat --- atst/forms/new_member.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/atst/forms/new_member.py b/atst/forms/new_member.py index 5d2c9f57..b7358d00 100644 --- a/atst/forms/new_member.py +++ b/atst/forms/new_member.py @@ -16,6 +16,9 @@ class NewMemberForm(Form): email = EmailField("Email Address", validators=[Required(), Email()]) dod_id = StringField("DOD ID", validators=[Required(), Length(min=10), IsNumber()]) workspace_role = SelectField( - "Workspace Role", choices=WORKSPACE_ROLES, validators=[Required()], default="", - description="The workspace role controls whether a member is permitted to organize a workspace into projects and environments, add members to this workspace, and view billing information." + "Workspace Role", + choices=WORKSPACE_ROLES, + validators=[Required()], + default="", + description="The workspace role controls whether a member is permitted to organize a workspace into projects and environments, add members to this workspace, and view billing information.", )