Skip to content

Commit ba50758

Browse files
Merge pull request #15 from PRBonn/benedikt/use_typing_extensions
Use typing_extensions
2 parents 4db67f2 + 8b98a03 commit ba50758

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

python/map_closures/map_closures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2121
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2222
# SOFTWARE.
23-
from typing import TypeAlias
23+
from typing_extensions import TypeAlias
2424

2525
import numpy as np
2626
from pydantic_settings import BaseSettings

python/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ dependencies = [
1919
"tqdm",
2020
"typer[all]>=0.6.0",
2121
"rich",
22+
"typing_extensions",
2223
]
2324

2425
[project.optional-dependencies]

0 commit comments

Comments
 (0)