style: fix line length and comment formatting

This commit is contained in:
Paul Gauthier (aider) 2024-10-31 14:03:33 -07:00
parent 750b12282f
commit 3fcd79e165

View file

@ -797,7 +797,9 @@ class Coder:
urls = list(set(url_pattern.findall(text))) # Use set to remove duplicates
for url in urls:
dump(url)
if self.io.confirm_ask("Open URL for more info about this error?", subject=url.rstrip(".',")):
if self.io.confirm_ask(
"Open URL for more info about this error?", subject=url.rstrip(".',")
):
webbrowser.open(url)
return urls