From ace0e944ec369017b5f407672ad33db2f98442bc Mon Sep 17 00:00:00 2001 From: Alexander Graf <17130992+aandergr@users.noreply.github.com> Date: Wed, 2 Dec 2020 19:33:13 +0100 Subject: [PATCH] docs: Fix description of Story.last_seen_utc --- instaloader/structures.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/instaloader/structures.py b/instaloader/structures.py index 3dd31ef..98415c9 100644 --- a/instaloader/structures.py +++ b/instaloader/structures.py @@ -1086,14 +1086,14 @@ class Story: @property def last_seen_local(self) -> Optional[datetime]: - """Timestamp when the story has last been watched or None (local time zone).""" + """Timestamp of the most recent StoryItem that has been watched or None (local time zone).""" if self._node['seen']: return datetime.fromtimestamp(self._node['seen']) return None @property def last_seen_utc(self) -> Optional[datetime]: - """Timestamp when the story has last been watched or None (UTC).""" + """Timestamp of the most recent StoryItem that has been watched or None (UTC).""" if self._node['seen']: return datetime.utcfromtimestamp(self._node['seen']) return None