Skip to content

Commit

Permalink
Fixing ivy-llc#16396 for Union argument issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayJohnAlex committed May 2, 2024
1 parent 138e95e commit 76b018e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ivy/data_classes/array/experimental/layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ def interpolate(
size: Union[Sequence[int], int],
/,
*,
mode: Union[
mode:
Literal[
"linear",
"bilinear",
Expand All @@ -736,8 +736,7 @@ def interpolate(
"lanczos3",
"lanczos5",
"gaussian"
]
] = "linear",
] = "linear",
scale_factor: Optional[Union[Sequence[int], int]] = None,
recompute_scale_factor: Optional[bool] = None,
align_corners: Optional[bool] = None,
Expand Down

0 comments on commit 76b018e

Please sign in to comment.