We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8baa94f commit 9cc9acdCopy full SHA for 9cc9acd
scraper/url_grouper.py
@@ -46,8 +46,8 @@
46
output_file.write("<ul>\n")
47
for item in value:
48
output_file.write(
49
- f'<li><a href="{PROTOCOL}://{BASE_URL}{key}/{item}" target=_blank>{item}</a></li>\n'
50
- ) # noqa: E231
+ f'<li><a href="{PROTOCOL}://{BASE_URL}{key}/{item}" target=_blank>{item}</a></li>\n' # noqa: E231
+ )
51
output_file.write("</ul>\n")
52
output_file.write("</li>\n")
53
0 commit comments