From 332a9120eed40cc734119e1c1e6a0dfc983b7af8 Mon Sep 17 00:00:00 2001 From: Ketan Umare Date: Sun, 12 Feb 2023 22:16:22 -0800 Subject: [PATCH] add missing None Signed-off-by: Ketan Umare --- flytekit/clients/auth/authenticator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flytekit/clients/auth/authenticator.py b/flytekit/clients/auth/authenticator.py index 46a4db4127..11928fef27 100644 --- a/flytekit/clients/auth/authenticator.py +++ b/flytekit/clients/auth/authenticator.py @@ -126,7 +126,7 @@ def __init__(self, command: typing.List[str], header_key: str = None): self._cmd = command if not self._cmd: raise ValueError("Command cannot be empty for command authenticator") - super().__init__(header_key) + super().__init__(None, header_key) def refresh_credentials(self): """