Skip to content

Commit

Permalink
lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
AkshayVenkataraman committed Jun 22, 2023
1 parent b27e1ee commit 43b0038
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions ivy/functional/frontends/paddle/tensor/tensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,7 @@ def sort(self, axis=-1, descending=False, name=None):
)
def amax(self, axis=None, keepdim=False, name=None):
return ivy.amax(self._ivy_array, axis=axis, keepdims=keepdim)

@with_unsupported_dtypes(
{"2.4.2 and below": ("complex")}, "paddle"
)

@with_unsupported_dtypes({"2.4.2 and below": "complex"}, "paddle")
def amin(self, axis=None, keepdim=False, name=None):
return ivy.amin(self._ivy_array, axis=axis, keepdims=keepdim)
Original file line number Diff line number Diff line change
Expand Up @@ -1179,4 +1179,3 @@ def test_paddle_amin(
method_flags=method_flags,
on_device=on_device,
)

0 comments on commit 43b0038

Please sign in to comment.