diff options
Diffstat (limited to 'gn3')
-rw-r--r-- | gn3/api/ctl.py | 3 | ||||
-rw-r--r-- | gn3/computations/ctl.py | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gn3/api/ctl.py b/gn3/api/ctl.py index 5ed36cb..7eca618 100644 --- a/gn3/api/ctl.py +++ b/gn3/api/ctl.py @@ -19,4 +19,5 @@ def run_ctl(): return jsonify({ "results":results - })
\ No newline at end of file + }) + diff --git a/gn3/computations/ctl.py b/gn3/computations/ctl.py index d11b691..1a71056 100644 --- a/gn3/computations/ctl.py +++ b/gn3/computations/ctl.py @@ -33,3 +33,4 @@ def call_ctl_script(data): except Exception as e: return str(e) + |