Remove an unnecessary f-string
- ID
38ac6ec- date
2024-02-14 23:00:09+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
e85aa81- message
Remove an unnecessary f-string- changed files
1 file, 1 addition, 1 deletion
Changed files
web/save_pinboard_bookmarks.py (5924) → web/save_pinboard_bookmarks.py (5923)
diff --git a/web/save_pinboard_bookmarks.py b/web/save_pinboard_bookmarks.py
index 07bc366..33f7dc2 100755
--- a/web/save_pinboard_bookmarks.py
+++ b/web/save_pinboard_bookmarks.py
@@ -107,7 +107,7 @@ def get_cache_ids(username: str, password: str) -> dict[str, str]:
if "earlier" not in pagination_link.text:
break
- url = f"https://pinboard.in" + pagination_link.attrs["href"]
+ url = "https://pinboard.in" + pagination_link.attrs["href"]
return cache_ids