From 17168ac14db4992b43ca42f25f71ad3bf0e1047e Mon Sep 17 00:00:00 2001 From: KR0K0BIL <187011674+KR0K0BIL@users.noreply.github.com> Date: Sat, 2 Nov 2024 14:39:45 +0100 Subject: [PATCH] Pop download_url from return_data of ProjectBody Asset --- scratchattach/other/project_json_capabilities.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scratchattach/other/project_json_capabilities.py b/scratchattach/other/project_json_capabilities.py index 6e7d0858..ddf0e967 100644 --- a/scratchattach/other/project_json_capabilities.py +++ b/scratchattach/other/project_json_capabilities.py @@ -381,6 +381,7 @@ def to_json(self): return_data = dict(self.__dict__) return_data.pop("filename") return_data.pop("id") + return_data.pop("download_url") return return_data def download(self, *, filename=None, dir=""):