Skip to content

Commit ac906a4

Browse files
committed
fix: Import TypeAlias from typing_extensions
1 parent 4ab87f3 commit ac906a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ConfigSpace/read_and_write/dictionary.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
from __future__ import annotations
22

33
import warnings
4-
from typing import TYPE_CHECKING, Any, Callable, TypeAlias
4+
from typing import TYPE_CHECKING, Any, Callable
5+
from typing_extensions import TypeAlias
56

67
from ConfigSpace.conditions import (
78
AndConjunction,

0 commit comments

Comments
 (0)