fix: Remove debug print statement from ToolSerializer
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
Typos Check / Spell Check with Typos (push) Waiting to run

This commit is contained in:
CaptainB 2025-12-04 21:30:50 +08:00
parent b10ce2296b
commit 433f0b1ca0

View File

@ -797,7 +797,6 @@ class ToolSerializer(serializers.Serializer):
res = requests.get(download_url, timeout=5)
tool_data = RestrictedUnpickler(io.BytesIO(res.content)).load().tool
tool_id = uuid.uuid7()
print(instance.get('tool_type'))
tool = Tool(
id=tool_id,
name=instance.get('name'),