From 37b9fb769088b19c26fa7c6cec567c2876ad4cb9 Mon Sep 17 00:00:00 2001 From: AlexP077 Date: Mon, 18 Sep 2023 12:06:50 +0300 Subject: [PATCH] ml_on --- service/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/views.py b/service/views.py index 32971a2..d9919d5 100644 --- a/service/views.py +++ b/service/views.py @@ -367,7 +367,7 @@ class PrePlacementPointViewSet(PlacementPointViewSet): file_id = request.POST['id'] total, matched, problem = PointService().start_mathing(file_id) PointService().make_enrichment() - # raschet('service_preplacementpoint') + raschet('service_preplacementpoint') return Response( {'message': {'total': total, 'matched': matched, 'error': problem, 'unmatched': total - matched - problem}}, status=HTTPStatus.OK,