Browse Source

Add TextInput.__str__ special method

Closes #7504
pull/7520/head
Rapptz 3 years ago
parent
commit
37d55c8ec4
  1. 3
      discord/ui/text_input.py

3
discord/ui/text_input.py

@ -117,6 +117,9 @@ class TextInput(Item[V]):
)
self.row: Optional[int] = row
def __str__(self) -> str:
return self.value or ''
@property
def custom_id(self) -> str:
""":class:`str`: The ID of the select menu that gets received during an interaction."""

Loading…
Cancel
Save