mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
fix: Remove unnecessary f-string
This commit is contained in:
parent
2a9d181efc
commit
996649fd98
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ class Commands:
|
||||||
content = self.scraper.scrape(url) or ""
|
content = self.scraper.scrape(url) or ""
|
||||||
content = f"{url}:\n\n" + content
|
content = f"{url}:\n\n" + content
|
||||||
|
|
||||||
self.io.tool_output(f"... done.")
|
self.io.tool_output("... done.")
|
||||||
|
|
||||||
if paginate:
|
if paginate:
|
||||||
# Use pypager to show the content
|
# Use pypager to show the content
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue