Skip to content

Commit 067c8aa

Browse files
Fix assert never import
1 parent 867db09 commit 067c8aa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/egglog/runtime.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
from dataclasses import InitVar, dataclass, replace
1919
from inspect import Parameter, Signature
2020
from itertools import zip_longest
21-
from typing import TYPE_CHECKING, Any, TypeVar, Union, assert_never, cast, get_args, get_origin
21+
from typing import TYPE_CHECKING, Any, TypeVar, Union, cast, get_args, get_origin
22+
23+
from typing_extensions import assert_never
2224

2325
from .declarations import *
2426
from .pretty import *

0 commit comments

Comments
 (0)