Skip to content

Commit 4d13cca

Browse files
committed
Properly import Annotated
1 parent 7a44d81 commit 4d13cca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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)