From e7ce8b6b77bf4e7f20e359fe648ae32f5d53d0ef Mon Sep 17 00:00:00 2001 From: NextChai <75498301+NextChai@users.noreply.github.com> Date: Sat, 30 Apr 2022 03:58:11 -0400 Subject: [PATCH] Add container operations documentation to TextInput --- discord/ui/text_input.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/discord/ui/text_input.py b/discord/ui/text_input.py index 3952affef..a5611b2f2 100644 --- a/discord/ui/text_input.py +++ b/discord/ui/text_input.py @@ -52,6 +52,12 @@ V = TypeVar('V', bound='View', covariant=True) class TextInput(Item[V]): """Represents a UI text input. + .. container:: operations + + .. describe:: str(x) + + Returns the value of the text input or an empty string if the value is ``None``. + .. versionadded:: 2.0 Parameters