From 0a705371397938e296906b5184e22d25fd1e436f Mon Sep 17 00:00:00 2001 From: Vincent Renaville Date: Tue, 14 Nov 2023 13:56:51 +0100 Subject: [PATCH] fix: remove last_update deprecated key (#447) --- base_attachment_object_storage/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/base_attachment_object_storage/__init__.py b/base_attachment_object_storage/__init__.py index 7f0956d9..6a5f25a2 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)