Compare commits

..

No commits in common. "f8e1ea16619e763329c7817e647b3b62790db0b2" and "5b7a4dec1ae13fcc71d883cae2bbcab26721aa6b" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ class Account:
emojis: List[Emoji] emojis: List[Emoji]
discoverable: bool discoverable: bool
created_at: datetime created_at: datetime
last_status_at: Optional[datetime] last_status_at: datetime
statuses_count: int statuses_count: int
followers_count: int followers_count: int
following_count: int following_count: int
@ -97,7 +97,7 @@ class Account:
emojis=list(map(Emoji.from_dict, data["emojis"])), emojis=list(map(Emoji.from_dict, data["emojis"])),
discoverable=data.get("discoverable", False), discoverable=data.get("discoverable", False),
created_at=_date(data["created_at"]), created_at=_date(data["created_at"]),
last_status_at=_date_or_none(data.get("last_status_at")), last_status_at=_date(data["last_status_at"]),
statuses_count=data["statuses_count"], statuses_count=data["statuses_count"],
followers_count=data["followers_count"], followers_count=data["followers_count"],
following_count=data["following_count"], following_count=data["following_count"],