Skip to content

Commit 68dbf00

Browse files
committed
move get_type_hints to typing_extensions
1 parent f3de572 commit 68dbf00

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/pointers/decay.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import inspect
22
from contextlib import suppress
33
from functools import wraps
4-
from typing import Any, Callable, Dict, Tuple, TypeVar, get_type_hints
4+
from typing import Any, Callable, Dict, Tuple, TypeVar
55

6-
from typing_extensions import Annotated, ParamSpec, get_args, get_origin
6+
from typing_extensions import (
7+
Annotated, ParamSpec, get_args, get_origin, get_type_hints
8+
)
79

810
from .object_pointer import Pointer, to_ptr
911

0 commit comments

Comments
 (0)