From 201681c6667a422936a7902ce8126f2e2aa336e8 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Fri, 12 Aug 2022 12:23:33 -0700 Subject: lint: f-string used where it didn't need to be --- fatcat_scholar/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fatcat_scholar') diff --git a/fatcat_scholar/web.py b/fatcat_scholar/web.py index 1a46bc3..00a23d6 100644 --- a/fatcat_scholar/web.py +++ b/fatcat_scholar/web.py @@ -278,7 +278,7 @@ def web_feed_rss( rss_items.append( # NOTE(i18n): could prefer "original title" and abstract based on lang context fastapi_rss.Item( - title=scholar_doc.biblio.title or f"(Microfilm Page)", + title=scholar_doc.biblio.title or "(Microfilm Page)", link=f"https://scholar.archive.org{lang.prefix}/work/{scholar_doc.work_ident}", description=abstract, author=authors, -- cgit v1.2.3