This commit is contained in:
Dima Gerasimov 2018-10-30 06:39:30 +00:00
parent fc41c78d20
commit 60ed4d0938

View file

@ -27,6 +27,10 @@ class Tweet:
def text(self) -> str:
return self.tw.text
@property
def tid(self) -> str:
return self.tw.id_str
def __str__(self) -> str:
return str(self.tw)