We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
INBOUNDS
1 parent 2ca9251 commit 607cb4dCopy full SHA for 607cb4d
config.py
@@ -19,4 +19,4 @@
19
20
SERVICE_PROTOCOL = config('SERVICE_PROTOCOL', cast=str, default='rest')
21
22
-INBOUNDS = config("INBOUNDS", cast=lambda v: [x.strip() for x in v.split(',')], default="")
+INBOUNDS = config("INBOUNDS", cast=lambda v: [x.strip() for x in v.split(',')] if v else [], default="")
0 commit comments