forked from LBRYCommunity/lbry-sdk
add comment property/setter to the signable support class
This commit is contained in:
parent
45a9ca29c4
commit
82f4267bf6
1 changed files with 8 additions and 0 deletions
|
@ -13,3 +13,11 @@ class Support(Signable):
|
|||
@emoji.setter
|
||||
def emoji(self, emoji: str):
|
||||
self.message.emoji = emoji
|
||||
|
||||
@property
|
||||
def comment(self) -> str:
|
||||
return self.message.comment
|
||||
|
||||
@comment.setter
|
||||
def comment(self, comment: str):
|
||||
self.message.comment = comment
|
||||
|
|
Loading…
Reference in a new issue