Skip to content

Commit

Permalink
add missing None
Browse files Browse the repository at this point in the history
Signed-off-by: Ketan Umare <[email protected]>
  • Loading branch information
Ketan Umare authored and Ketan Umare committed Feb 13, 2023
1 parent 3251e8b commit 332a912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flytekit/clients/auth/authenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
"""
Expand Down

0 comments on commit 332a912

Please sign in to comment.