diff --git a/src/steamship/invocable/invocable.py b/src/steamship/invocable/invocable.py index 8f212a7a..83fcdb36 100644 --- a/src/steamship/invocable/invocable.py +++ b/src/steamship/invocable/invocable.py @@ -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()}, + **{k: v for k, v in (config or {}).items() if v != ""}, } # Finally, we set the config object to an instance of the class returned by `self.config_cls`