Browse Source
Add missing generic to interaction in item callback
pull/9195/head
Alex Nørgaard
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/ui/item.py
|
|
@ -41,7 +41,7 @@ if TYPE_CHECKING: |
|
|
|
|
|
|
|
I = TypeVar('I', bound='Item') |
|
|
|
V = TypeVar('V', bound='View', covariant=True) |
|
|
|
ItemCallbackType = Callable[[V, Interaction, I], Coroutine[Any, Any, Any]] |
|
|
|
ItemCallbackType = Callable[[V, Interaction[Any], I], Coroutine[Any, Any, Any]] |
|
|
|
|
|
|
|
|
|
|
|
class Item(Generic[V]): |
|
|
|