Skip to content

Commit 7405d20

Browse files
committed
Properly import Annotated
1 parent 07218d5 commit 7405d20

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,10 +1,10 @@
11
"""Cattrs validation."""
22

3-
from typing import Annotated, Any, Callable, List, TypeVar, Union, overload
3+
from typing import Any, Callable, List, TypeVar, Union, overload
44

55
from attrs import NOTHING, frozen
66

7-
from .._compat import ExceptionGroup
7+
from .._compat import Annotated, ExceptionGroup
88
from ..errors import (
99
ClassValidationError,
1010
ForbiddenExtraKeysError,

0 commit comments

Comments
 (0)