Skip to content

Commit b40d545

Browse files
committed
🐛 Theres no typing.Unpack un 3.10
1 parent fae977c commit b40d545

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

discord/gears/components.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424

2525
from abc import ABC
2626
from functools import wraps
27-
from typing import TYPE_CHECKING, Any, Awaitable, Callable, Coroutine, ParamSpec, Protocol, TypeAlias, TypeVar, Unpack
27+
from typing import TYPE_CHECKING, Any, Awaitable, Callable, Coroutine, ParamSpec, Protocol, TypeAlias, TypeVar
28+
29+
from typing_extensions import Unpack
2830

2931
from ..events import InteractionCreate
3032
from ..interactions import ComponentInteraction, ModalInteraction

0 commit comments

Comments
 (0)