Browse Source

Merge c2f933bcae into 2fbed93624

pull/10416/merge
Sacul 3 weeks ago
committed by GitHub
parent
commit
4eae5afdaa
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      discord/ui/checkbox.py
  2. 2
      discord/ui/radio.py

4
discord/ui/checkbox.py

@ -59,7 +59,7 @@ V = TypeVar('V', bound='BaseView', covariant=True)
class CheckboxGroup(Item[V]): class CheckboxGroup(Item[V]):
"""Represents a checkbox group component within a modal. """Represents a checkbox group component within a modal that can only be used in :class:`Label`.
.. versionadded:: 2.7 .. versionadded:: 2.7
@ -281,7 +281,7 @@ class CheckboxGroup(Item[V]):
class Checkbox(Item[V]): class Checkbox(Item[V]):
"""Represents a checkbox component within a modal. """Represents a checkbox component within a modal that can only be used in :class:`Label`.
.. versionadded:: 2.7 .. versionadded:: 2.7

2
discord/ui/radio.py

@ -54,7 +54,7 @@ V = TypeVar('V', bound='BaseView', covariant=True)
class RadioGroup(Item[V]): class RadioGroup(Item[V]):
"""Represents a radio group component within a modal. """Represents a radio group component within a modal that can only be used in :class:`Label`.
.. versionadded:: 2.7 .. versionadded:: 2.7

Loading…
Cancel
Save