mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-02 05:24:51 +00:00
Fix Sticker.set_name being treated as tuple/list-like when should in fact be a string
Yes, that little comma messed things up (again)
This commit is contained in:
parent
237e434e78
commit
abc0e992cf
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ class Sticker(Object):
|
|||
self.width = width
|
||||
self.height = height
|
||||
self.emoji = emoji
|
||||
self.set_name = set_name,
|
||||
self.set_name = set_name
|
||||
self.thumbs = thumbs
|
||||
# self.mask_position = mask_position
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue