Skip to content

Commit dcf931a

Browse files
authored
[doc] created --> updated
The description of update property was wrong (created instead of updated).
1 parent 8f0c3f4 commit dcf931a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

webexteamssdk/models/mixins/message.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ def created(self):
132132

133133
@property
134134
def updated(self):
135-
"""The date and time the message was created."""
136-
created = self._json_data.get("updated")
137-
if created:
138-
return WebexTeamsDateTime.strptime(created)
135+
"""The date and time the message was updated."""
136+
updated = self._json_data.get("updated")
137+
if updated:
138+
return WebexTeamsDateTime.strptime(updated)
139139
else:
140140
return None

0 commit comments

Comments
 (0)