chore: Remove f prefix on plain string

This commit is contained in:
Gavin D'souza 2021-05-11 13:02:45 +05:30
parent b3af9f0c72
commit 134b2dcd5c

View file

@ -40,7 +40,7 @@ class WebsiteSearch(FullTextSearch):
self._items_to_index = []
for i, route in enumerate(routes):
update_progress_bar(f"Retrieving Routes", i, len(routes))
update_progress_bar("Retrieving Routes", i, len(routes))
self._items_to_index += [self.get_document_to_index(route)]
print()