We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bf6302 commit f29b88dCopy full SHA for f29b88d
src/data.py
@@ -22,7 +22,7 @@ def string_to_list(s, prefix=""):
22
Helper function to convert a string to a list, e.g. `'A, B'` to `['A', 'B']`
23
"""
24
if s:
25
- return sorted(prefix + l.strip() for l in s.split(","))
+ return sorted(prefix + litem.strip() for litem in s.split(","))
26
else:
27
return []
28
0 commit comments