Skip to content

Commit

Permalink
Move noqa to the right line
Browse files Browse the repository at this point in the history
  • Loading branch information
code-geek committed Aug 26, 2024
1 parent 8baa94f commit 9cc9acd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scraper/url_grouper.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
output_file.write("<ul>\n")
for item in value:
output_file.write(
f'<li><a href="{PROTOCOL}://{BASE_URL}{key}/{item}" target=_blank>{item}</a></li>\n'
) # noqa: E231
f'<li><a href="{PROTOCOL}://{BASE_URL}{key}/{item}" target=_blank>{item}</a></li>\n' # noqa: E231
)
output_file.write("</ul>\n")
output_file.write("</li>\n")
output_file.write("</ul>\n")

0 comments on commit 9cc9acd

Please sign in to comment.