Remove annotation on row property in subclasses

This commit is contained in:
Rapptz
2022-03-29 23:01:26 -04:00
parent 3215cb65e2
commit e515378076
3 changed files with 3 additions and 3 deletions

View File

@ -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: