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

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