Browse Source
Add container operations documentation to TextInput
pull/7959/head
NextChai
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
0 deletions
-
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 |
|
|
|