Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
phildominguez-gsa committed Oct 22, 2024
1 parent 7a81049 commit 9a5e81a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/report_submission/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ def get(self, request):

if start and not end:
dollar_thresholds.append(
f"${minimum} or more with a Fiscal Year starting on or after {start.strftime("%B %d, %Y")}"
f"${minimum} or more with a Fiscal Year starting on or after {start.strftime('%B %d, %Y')}"
)
elif start and end:
dollar_thresholds.append(
f"${minimum} or more with a Fiscal Year starting after {start.strftime("%B %d, %Y")} and before {end.strftime("%B %d, %Y")}"
f"${minimum} or more with a Fiscal Year starting after {start.strftime('%B %d, %Y')} and before {end.strftime('%B %d, %Y')}"
)
elif not start and end:
dollar_thresholds.append(
f"${minimum} or more with a Fiscal Year starting before {end.strftime("%B %d, %Y")}"
f"${minimum} or more with a Fiscal Year starting before {end.strftime('%B %d, %Y')}"
)

args["dollar_thresholds"] = dollar_thresholds
Expand Down

0 comments on commit 9a5e81a

Please sign in to comment.