Skip to content

Commit b2362e0

Browse files
committed
⚰️ remove remaining unused Unpack imports
1 parent 4a410ea commit b2362e0

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

scipy-stubs/signal/_ltisys.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# mypy: disable-error-code="explicit-override"
22
import abc
33
from typing import ClassVar, Final, Generic, Literal, Never, Self, TypeAlias, final, overload, type_check_only
4-
from typing_extensions import TypeVar, Unpack, override
4+
from typing_extensions import TypeVar, override
55

66
import numpy as np
77
import optype as op

scipy-stubs/sparse/_typing.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NOTE(scipy-stubs): This ia a module only exists `if typing.TYPE_CHECKING: ...`
22
from typing import Literal, TypeAlias
3-
from typing_extensions import TypeAliasType, Unpack
3+
from typing_extensions import TypeAliasType
44

55
import numpy as np
66
import optype as op

scipy-stubs/stats/_fit.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from collections.abc import Callable, Mapping, Sequence
22
from typing import Any, Concatenate, Generic, Literal, NamedTuple, Protocol, TypeAlias, overload, type_check_only
3-
from typing_extensions import TypeVar, Unpack
3+
from typing_extensions import TypeVar
44

55
import numpy as np
66
import optype.numpy as onp

scipy-stubs/stats/_multivariate.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from typing import Any, Final, Generic, Literal, TypeAlias, overload, type_check_only
2-
from typing_extensions import TypeVar, Unpack, override
2+
from typing_extensions import TypeVar, override
33

44
import numpy as np
55
import optype as op

scipy-stubs/stats/_typing.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
import abc
44
from typing import Generic, Literal, Self, TypeAlias, final, type_check_only
5-
from typing_extensions import TypeVarTuple, Unpack
5+
from typing_extensions import TypeVarTuple
66

7-
__all__ = ("BaseBunch", "PowerDivergenceStatistic")
7+
__all__ = "BaseBunch", "PowerDivergenceStatistic"
88

99
_Ts = TypeVarTuple("_Ts")
1010

0 commit comments

Comments
 (0)