diff --git a/appbuilder/core/component.py b/appbuilder/core/component.py index aefb74980..31256c920 100644 --- a/appbuilder/core/component.py +++ b/appbuilder/core/component.py @@ -83,7 +83,7 @@ def __init__( self.set_secret_key_and_gateway(self.secret_key, self.gateway) @ttl_lru_cache(seconds_to_live=1 * 60 * 60) # 1h - def appbuilder/core/component.py(self, secret_key: Optional[str] = None, gateway: str = ""): + def set_secret_key_and_gateway(self, secret_key: Optional[str] = None, gateway: str = ""): self.secret_key = secret_key self.gateway = gateway self._http_client = HTTPClient(self.secret_key, self.gateway)