run formatter

This commit is contained in:
Andrew Croce 2018-09-04 15:26:06 -04:00
parent fa1292662c
commit 014eb9c1ef

View File

@ -108,13 +108,13 @@ class BaseFinancialForm(ValidatedForm):
pe_id = StringField( pe_id = StringField(
"Program Element Number", "Program Element Number",
description="PE numbers help the Department of Defense identify which offices' budgets are contributing towards this resource use. <br/><em>It should be 7 digits followed by 1-3 letters, and should have a zero as the first and third digits.</em>", description="PE numbers help the Department of Defense identify which offices' budgets are contributing towards this resource use. <br/><em>It should be 7 digits followed by 1-3 letters, and should have a zero as the first and third digits.</em>",
validators=[Required()] validators=[Required()],
) )
treasury_code = StringField( treasury_code = StringField(
"Program Treasury Code", "Program Treasury Code",
description="Program Treasury Code (or Appropriations Code) identifies resource types. <br/> <em>It should be a four digit or six digit number, optionally prefixed by one or more zeros.</em>", description="Program Treasury Code (or Appropriations Code) identifies resource types. <br/> <em>It should be a four digit or six digit number, optionally prefixed by one or more zeros.</em>",
validators=[Required(), Regexp(TREASURY_CODE_REGEX)] validators=[Required(), Regexp(TREASURY_CODE_REGEX)],
) )
ba_code = StringField( ba_code = StringField(
@ -130,22 +130,13 @@ class BaseFinancialForm(ValidatedForm):
office_co = StringField("KO Office", validators=[Required()]) office_co = StringField("KO Office", validators=[Required()])
fname_cor = StringField( fname_cor = StringField("COR First Name", validators=[Required()])
"COR First Name", validators=[Required()]
)
lname_cor = StringField( lname_cor = StringField("COR Last Name", validators=[Required()])
"COR Last Name", validators=[Required()]
)
email_cor = EmailField( email_cor = EmailField("COR Email", validators=[Required(), Email()])
"COR Email",
validators=[Required(), Email()],
)
office_cor = StringField( office_cor = StringField("COR Office", validators=[Required()])
"COR Office", validators=[Required()]
)
class FinancialForm(BaseFinancialForm): class FinancialForm(BaseFinancialForm):