From 72b0c640bddf17d0d22719b1b04fa21f32a782d5 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 5 Jul 2024 11:27:55 +0200 Subject: [PATCH] avoid print --- teleforma/exam/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teleforma/exam/views.py b/teleforma/exam/views.py index b59841d0..f59c5426 100755 --- a/teleforma/exam/views.py +++ b/teleforma/exam/views.py @@ -205,11 +205,11 @@ class ScriptDownloadView(ScriptMixinView, CourseAccessMixin): can.setFillColorRGB(1,0,0) annotation_data = json.loads(annotation.content) - print(annotation_data) + # print(annotation_data) text = "N/A" # we handle only point (comment) and textbox (text) annotations if annotation_data.get('type') == 'point': - print(annotation.uuid) + # print(annotation.uuid) # print(uuid) comment = AnnotationComment.objects.get(annotation_id=annotation.annotation_id, uuid=annotation.uuid) text = comment.content -- 2.39.5