Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
matti-lamppu committed Sep 2, 2024
1 parent 5c881b0 commit 1222bcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin_data_views/templatetags/admin_data_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def to_csv(value: list[list[str]]) -> str:
for item in row:
match = LINK_TEMPLATE.match(item)
if match is not None:
item = match.group("value")
item = match.group("value") # noqa: PLW2901
row_string += f"{item},"

string += row_string[:-1] + "\n"
Expand Down

0 comments on commit 1222bcb

Please sign in to comment.