Skip to content

Commit

Permalink
fix spaces in f string
Browse files Browse the repository at this point in the history
  • Loading branch information
struan committed Dec 19, 2024
1 parent 74230e7 commit 516df03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crowdsourcer/views/progress.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,10 @@ def get_context_data(self, **kwargs):

if self.request.current_session.entity_name is not None:
self.page_title = (
f"{self.request.current_session.entity_name}s {self.page_title }"
f"{self.request.current_session.entity_name}s {self.page_title}"
)
else:
self.page_title = f"Councils {self.page_title }"
self.page_title = f"Councils {self.page_title}"

context["councils"] = council_totals
context["authorities"] = authorities
Expand Down

0 comments on commit 516df03

Please sign in to comment.