We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a121afc commit 1120c4cCopy full SHA for 1120c4c
src/steamship/invocable/invocable.py
@@ -180,7 +180,7 @@ def __init__(
180
# creation. All subsequent method invocations reuse that frozen config.
181
config = {
182
**secret_kwargs,
183
- **{k: v for k, v in (config or {}).items()},
+ **{k: v for k, v in (config or {}).items() if v != ""},
184
}
185
186
# Finally, we set the config object to an instance of the class returned by `self.config_cls`
0 commit comments