Skip to content

Commit 2ca9251

Browse files
fix: cast error (#70)
1 parent b870e25 commit 2ca9251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919

2020
SERVICE_PROTOCOL = config('SERVICE_PROTOCOL', cast=str, default='rest')
2121

22-
INBOUNDS = config("INBOUNDS", cast=lambda v: [x.strip() for x in v.split(',')], default=[])
22+
INBOUNDS = config("INBOUNDS", cast=lambda v: [x.strip() for x in v.split(',')], default="")

0 commit comments

Comments
 (0)