Skip to content

Commit

Permalink
fix type annotation
Browse files Browse the repository at this point in the history
Signed-off-by: troychiu <[email protected]>
  • Loading branch information
troychiu committed Nov 1, 2023
1 parent a4b2f63 commit fd86070
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flytekit/core/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def task(
cache: bool = ...,
cache_serialize: bool = ...,
cache_version: str = ...,
cache_ignore_input_vars: Tuple[str] = ...,
cache_ignore_input_vars: Tuple[str, ...] = ...,
retries: int = ...,
interruptible: Optional[bool] = ...,
deprecated: str = ...,
Expand Down Expand Up @@ -114,7 +114,7 @@ def task(
cache: bool = ...,
cache_serialize: bool = ...,
cache_version: str = ...,
cache_ignore_input_vars: Tuple[str] = ...,
cache_ignore_input_vars: Tuple[str, ...] = ...,
retries: int = ...,
interruptible: Optional[bool] = ...,
deprecated: str = ...,
Expand Down

0 comments on commit fd86070

Please sign in to comment.