Skip to content

Commit

Permalink
fix: EmojiDetailedからlicenseが欠落している
Browse files Browse the repository at this point in the history
  • Loading branch information
yupix committed May 31, 2024
1 parent e3fdbcf commit f85be9b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mipac/models/emoji.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,10 @@ def host(self) -> str | None:
def url(self) -> str:
return self.__raw_emoji_detailed["url"]

@property
def license(self) -> str | None:
return self.__raw_emoji_detailed["license"]

@property
def is_sensitive(self) -> bool:
return self.__raw_emoji_detailed["is_sensitive"]
Expand Down

0 comments on commit f85be9b

Please sign in to comment.