diff --git a/base_attachment_object_storage/__init__.py b/base_attachment_object_storage/__init__.py index 7f0956d..6a5f25a 100644 --- a/base_attachment_object_storage/__init__.py +++ b/base_attachment_object_storage/__init__.py @@ -18,7 +18,6 @@ def from_attachment(cls, attachment): ) self.type = "data" self.data = attachment.raw - self.last_modified = attachment["__last_update"] self.size = len(self.data) return self return old_from_attachment(attachment)