Skip to content

Commit

Permalink
Add a TODO note for list_to_string functions
Browse files Browse the repository at this point in the history
  • Loading branch information
bpepple committed Feb 29, 2024
1 parent ed72ea2 commit bd9468b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions darkseid/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def list_to_string(list_of_strings: list[str]) -> str:
:param list_of_strings: A list of strings.
:type list_of_strings: list of str
"""
# TODO: Use a comma for the delimiter since a lot of servers don't recognize the semicolon.
return "; ".join(map(str, list_of_strings))


Expand Down

0 comments on commit bd9468b

Please sign in to comment.