From 0556faa1964bf19be671c11ce14522192ee5eb14 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?D=C3=B3nal=20Murray?= <donal.murray@cern.ch>
Date: Thu, 16 Apr 2020 11:58:55 +0100
Subject: [PATCH] Remove hard coded path

---
 raspberry-dataserver/hevfromtxt.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/raspberry-dataserver/hevfromtxt.py b/raspberry-dataserver/hevfromtxt.py
index ff1ae72e..8d5769b6 100755
--- a/raspberry-dataserver/hevfromtxt.py
+++ b/raspberry-dataserver/hevfromtxt.py
@@ -18,7 +18,7 @@ logging.basicConfig(level=logging.INFO,
 class hevfromtxt():
     def __init__(self, inputFile):
         # use input file for testing
-        h = np.loadtxt('share/sample.txt',skiprows = 1, delimiter = ',')
+        h = np.loadtxt(inputFile,skiprows = 1, delimiter = ',')
         self._pressure = h[:,1].tolist()
         self._flow = h[:,2].tolist()
         self._volume = h[:,3].tolist()
-- 
GitLab