From c22d2982fb569b36c90ebca8c3041954f110d02c Mon Sep 17 00:00:00 2001 From: terrtia Date: Thu, 29 Feb 2024 15:03:39 +0100 Subject: [PATCH] fix: [api] remove debug output --- var/www/blueprints/api_rest.py | 1 - 1 file changed, 1 deletion(-) diff --git a/var/www/blueprints/api_rest.py b/var/www/blueprints/api_rest.py index f0f91fc8..fba5b17b 100644 --- a/var/www/blueprints/api_rest.py +++ b/var/www/blueprints/api_rest.py @@ -163,7 +163,6 @@ def v1_object(): obj_subtype = request.args.get('subtype') obj_id = request.args.get('id') r = ail_objects.api_get_object(obj_type, obj_subtype, obj_id) - print(r[0]) return create_json_response(r[0], r[1])