Solution
class fiscalYearForm(FlaskForm):
fy_timeframe = SelectField(
"Please Select Fiscal Quarter",
choices=[
('FY2022 Q4', 'FY2022 Q4'),
('FY2022 Q3', 'FY2022 Q3'),
('FY2022 Q2', 'FY2022 Q2'),
('FY2022 Q1', 'FY2022 Q1'),
],
validators=[DataRequired()],
)