Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Illviljan committed Aug 19, 2024
1 parent cd90618 commit 44a16c7
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions xarray/namedarray/_array_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,37 +15,37 @@
from xarray.namedarray._array_api.creation_functions import (
arange,
asarray,
# empty,
# empty_like,
empty,
empty_like,
# eye,
full,
# full_like,
full_like,
linspace,
# meshgrid,
ones,
# ones_like,
ones_like,
# tril,
# triu,
zeros,
# zeros_like,
zeros_like,
)

__all__ += [
"arange",
"asarray",
# "empty",
# "empty_like",
"empty",
"empty_like",
# "eye",
"full",
# "full_like",
"full_like",
"linspace",
# "meshgrid",
"ones",
# "ones_like",
"ones_like",
# "tril",
# "triu",
"zeros",
# "zeros_like",
"zeros_like",
]

from xarray.namedarray._array_api.data_type_functions import (
Expand Down Expand Up @@ -277,19 +277,19 @@
# ]

from xarray.namedarray._array_api.statistical_functions import (
# max,
max,
mean,
# min,
# prod,
# sum,
min,
prod,
sum,
)

__all__ += [
# "max",
"max",
"mean",
# "min",
# "prod",
# "sum",
"min",
"prod",
"sum",
]

from xarray.namedarray._array_api.utility_functions import (
Expand Down

0 comments on commit 44a16c7

Please sign in to comment.