Skip to content

Commit f29b88d

Browse files
committed
chore: ruff fix
1 parent 8bf6302 commit f29b88d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def string_to_list(s, prefix=""):
2222
Helper function to convert a string to a list, e.g. `'A, B'` to `['A', 'B']`
2323
"""
2424
if s:
25-
return sorted(prefix + l.strip() for l in s.split(","))
25+
return sorted(prefix + litem.strip() for litem in s.split(","))
2626
else:
2727
return []
2828

0 commit comments

Comments
 (0)