Skip to content

Commit

Permalink
Invocable initialization should not remove config values that are emp…
Browse files Browse the repository at this point in the history
…ty strings (#593)
  • Loading branch information
dkolas authored Nov 10, 2023
1 parent 21d0b33 commit 0c19da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/steamship/invocable/invocable.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def __init__(
# creation. All subsequent method invocations reuse that frozen config.
config = {
**secret_kwargs,
**{k: v for k, v in (config or {}).items() if v != ""},
**{k: v for k, v in (config or {}).items()},
}

# Finally, we set the config object to an instance of the class returned by `self.config_cls`
Expand Down

0 comments on commit 0c19da1

Please sign in to comment.