Skip to content

Instantly share code, notes, and snippets.

@vchrombie
Last active June 7, 2020 16:58
Show Gist options
  • Save vchrombie/2d1493abf2b074fb3acce896c9f4e557 to your computer and use it in GitHub Desktop.
Save vchrombie/2d1493abf2b074fb3acce896c9f4e557 to your computer and use it in GitHub Desktop.
def __get_reactions(self, item):
reactions = ()
item_reactions = item.get('award_emoji_data', [])
for item in item_reactions:
reaction = {
'type': item['name'],
'count': sum(1 for i in item_reactions if i['name'] == item['name'])
}
reactions.add(reaction)
return list(reactions)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment