opti
This commit is contained in:
parent
3780a3564f
commit
912bf6516c
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ def load(variables):
|
|||
try:
|
||||
res = environ[var]
|
||||
if var == "CHANNEL":
|
||||
res = list(set(res.split(',')) - set([""])) # create a list for the channels and remove blank channels
|
||||
res = list(set(res.split(',')) - {""}) # create a list for the channels and remove blank channels
|
||||
keys[var] = res
|
||||
except KeyError:
|
||||
print(f"Please set the environment variable {var} (.env file supported)")
|
||||
|
|
Loading…
Reference in a new issue