Skip to content

Commit 386fdf0

Browse files
committed
Properly import Annotated
1 parent 006dc72 commit 386fdf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cattrs/v/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""Cattrs validation."""
2-
from typing import Annotated, Any, Callable, List, TypeVar, Union, overload
2+
from typing import Any, Callable, List, TypeVar, Union, overload
33

44
from attrs import NOTHING, frozen
55

6-
from .._compat import ExceptionGroup
6+
from .._compat import Annotated, ExceptionGroup
77
from ..errors import (
88
ClassValidationError,
99
ForbiddenExtraKeysError,

0 commit comments

Comments
 (0)