Browse Source

[types.message] add Emoji.custom property

pull/41/head
andrei 8 years ago
parent
commit
8aca1b47b7
  1. 4
      disco/types/message.py

4
disco/types/message.py

@ -31,6 +31,10 @@ class Emoji(SlottedModel):
id = Field(snowflake) id = Field(snowflake)
name = Field(text) name = Field(text)
@cached_property
def custom(self):
return self.id is not None
def __eq__(self, other): def __eq__(self, other):
if isinstance(other, Emoji): if isinstance(other, Emoji):
return self.id == other.id and self.name == other.name return self.id == other.id and self.name == other.name

Loading…
Cancel
Save