filipeclduarte's picture
Update util.py
5a588cc
raw
history blame
74 Bytes
def string_to_list(string):
li = list(string.split(","))
return li