From 577392277c362d424a59416e0ab62b01aebda265 Mon Sep 17 00:00:00 2001 From: nesnoj Date: Mon, 24 Jun 2019 16:40:11 +0200 Subject: [PATCH] rm orphaned sim check code block #61 --- views/__init__.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/views/__init__.py b/views/__init__.py index 3b02ba31..ab1bd015 100644 --- a/views/__init__.py +++ b/views/__init__.py @@ -167,14 +167,6 @@ def post(self, request, session): ret_data = 'simulation successful' - # # check if there are resuls for current scenario - # # (trigger: open results panel) - # elif action == 'check_results': - # if session.simulation.results is None: - # ret_data = 'none' - # else: - # ret_data = json.dumps({'results': 'found'}) - return HttpResponse(ret_data)