Skip to content

Commit e6cbe91

Browse files
committed
✏️ special: fix missing (and hidden) _supports_alternative_backends exports
1 parent 2b748f5 commit e6cbe91

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

scipy-stubs/special/_support_alternative_backends.pyi

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from ._ufuncs import (
2-
betainc, # pyright: ignore[reportUnusedImport]
3-
betaincc, # pyright: ignore[reportUnusedImport]
4-
chdtr, # pyright: ignore[reportUnusedImport]
2+
betainc,
3+
betaincc,
4+
chdtr,
55
chdtrc,
66
entr,
77
erf,
@@ -19,11 +19,14 @@ from ._ufuncs import (
1919
ndtr,
2020
ndtri,
2121
rel_entr,
22-
stdtr, # pyright: ignore[reportUnusedImport]
22+
stdtr,
2323
xlogy,
2424
)
2525

2626
__all__ = [
27+
"betainc",
28+
"betaincc",
29+
"chdtr",
2730
"chdtrc",
2831
"entr",
2932
"erf",
@@ -41,5 +44,6 @@ __all__ = [
4144
"ndtr",
4245
"ndtri",
4346
"rel_entr",
47+
"stdtr",
4448
"xlogy",
4549
]

0 commit comments

Comments
 (0)