Skip to content

Commit c88c1ee

Browse files
committed
🩹 fix TypeAliasType import on Python 3.11
1 parent 3f7f1cc commit c88c1ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎scipy-stubs/sparse/_matrix.pyi‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
from collections.abc import Sequence
55
from types import GenericAlias
6-
from typing import Any, Generic, Literal as L, Self, SupportsIndex, TypeAlias, TypeAliasType, overload, type_check_only
7-
from typing_extensions import TypeVar
6+
from typing import Any, Generic, Literal as L, Self, SupportsIndex, TypeAlias, overload, type_check_only
7+
from typing_extensions import TypeAliasType, TypeVar
88

99
import numpy as np
1010
import optype as op

0 commit comments

Comments
 (0)