Skip to content

Commit 433f0b1

Browse files
committed
fix: Remove debug print statement from ToolSerializer
1 parent b10ce22 commit 433f0b1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

apps/tools/serializers/tool.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,6 @@ def add(self, instance: Dict, with_valid=True):
797797
res = requests.get(download_url, timeout=5)
798798
tool_data = RestrictedUnpickler(io.BytesIO(res.content)).load().tool
799799
tool_id = uuid.uuid7()
800-
print(instance.get('tool_type'))
801800
tool = Tool(
802801
id=tool_id,
803802
name=instance.get('name'),

0 commit comments

Comments
 (0)