Handle the possilbe case of splitting on an empty string returning a list with an empty string

This commit is contained in:
Trenton H 2023-03-07 15:42:23 -08:00
parent b470fc0140
commit f100198a8a

View File

@ -84,7 +84,7 @@ def __get_list(
string, or the default if the key does not exist
"""
if key in os.environ:
return os.environ[key].split(sep)
return list(filter(None, os.environ[key].split(sep)))
elif default is not None:
return default
else: