Skip to content

Commit 3894430

Browse files
committed
fix: import name
Signed-off-by: Henry Schreiner <[email protected]>
1 parent d7e6548 commit 3894430

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/scikit_build_core/build/metadata.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ def __dir__() -> list[str]:
2929

3030
# Use exceptiongroup backport
3131
if sys.version_info < (3, 11):
32-
from exceptiongroups import ExceptionGroup # type: ignore[import-not-found]
32+
from exceptiongroup import ExceptionGroup
3333

34-
errors.ExceptionGroup = ExceptionGroup # type: ignore[misc]
34+
errors.ExceptionGroup = ExceptionGroup # type: ignore[misc, assignment]
3535

3636

3737
# If pyproject-metadata eventually supports updates, this can be simplified

0 commit comments

Comments
 (0)