From cf21c5bf80ba238fc768cb923b4ef5a854a5783f Mon Sep 17 00:00:00 2001 From: DA344 <108473820+DA-344@users.noreply.github.com> Date: Tue, 20 May 2025 23:23:56 +0200 Subject: [PATCH] chore: revert double quotes to single quotes --- discord/types/components.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/types/components.py b/discord/types/components.py index a458a1d96..332701ef5 100644 --- a/discord/types/components.py +++ b/discord/types/components.py @@ -33,7 +33,7 @@ from .channel import ChannelType ComponentType = Literal[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17] ButtonStyle = Literal[1, 2, 3, 4, 5, 6] TextStyle = Literal[1, 2] -DefaultValueType = Literal["user", "role", "channel"] +DefaultValueType = Literal['user', 'role', 'channel'] SeparatorSize = Literal[1, 2] MediaItemLoadingState = Literal[0, 1, 2, 3]