Browse Source

Remove annotation on row property in subclasses

pull/7813/head
Rapptz 3 years ago
parent
commit
e515378076
  1. 2
      discord/ui/button.py
  2. 2
      discord/ui/select.py
  3. 2
      discord/ui/text_input.py

2
discord/ui/button.py

@ -128,7 +128,7 @@ class Button(Item[V]):
style=style,
emoji=emoji,
)
self.row: Optional[int] = row
self.row = row
@property
def style(self) -> ButtonStyle:

2
discord/ui/select.py

@ -124,7 +124,7 @@ class Select(Item[V]):
options=options,
disabled=disabled,
)
self.row: Optional[int] = row
self.row = row
@property
def custom_id(self) -> str:

2
discord/ui/text_input.py

@ -118,7 +118,7 @@ class TextInput(Item[V]):
min_length=min_length,
max_length=max_length,
)
self.row: Optional[int] = row
self.row = row
def __str__(self) -> str:
return self.value or ''

Loading…
Cancel
Save