From d0727cf52904dd7e394e9d286e86d3f4443611fa Mon Sep 17 00:00:00 2001
From: Sven Warris <sven@warris.nl>
Date: Wed, 3 May 2023 15:33:51 +0200
Subject: [PATCH] skiprows

---
 f500/collecting/F500.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/f500/collecting/F500.py b/f500/collecting/F500.py
index 0cbab87..044e401 100644
--- a/f500/collecting/F500.py
+++ b/f500/collecting/F500.py
@@ -545,7 +545,7 @@ class F500:
                                 skiprows = None
                             else:
                                 skiprows = 1  
-                            histogramData = pandas.read_csv(histogramFile, sep=";", header=0, skiprows=skiprows)
+                            histogramData = pandas.read_csv(histogramFile, sep=";", header=0, skiprows=1)
                             histogramList.append(histogramData) 
                         except Exception as e:
                             self.logger.warning("Could not process histogram file: {}".format(e))
-- 
GitLab