Skip to content

Commit f077141

Browse files
committed
🏷️ Fix type error
1 parent 9dca810 commit f077141

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

discord/ui/select.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
from ..types.interactions import ComponentInteractionData
6969
from .view import View
7070

71-
ST = TypeVar("ST", bound=Snowflake | str, covariant=True, default=Any)
71+
ST = TypeVar("ST", bound="Snowflake | str", covariant=True, default=Any)
7272
S = TypeVar("S", bound="Select")
7373
V = TypeVar("V", bound="View", covariant=True)
7474

0 commit comments

Comments
 (0)