From 837387433add7c8c2a9d2aed573fad3966639645 Mon Sep 17 00:00:00 2001 From: DeaDvey Date: Tue, 19 Nov 2024 17:07:32 +0000 Subject: [PATCH] removed run.py --- node/run.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 node/run.py diff --git a/node/run.py b/node/run.py deleted file mode 100644 index c6718a9..0000000 --- a/node/run.py +++ /dev/null @@ -1,11 +0,0 @@ -import subprocess - -# Path to a Python interpreter that runs any Python script -# under the virtualenv /path/to/virtualenv/ -python_bin = "/home/max/venv/bin/activate" - -# Path to the script that must run under the virtualenv -script_file = "/home/max/maths/maths.py" - -subprocess.Popen([python_bin, script_file]) -