From 6a6c5c8f3aad6c368b9d0422d6e14c956b3659ae Mon Sep 17 00:00:00 2001 From: andrei Date: Wed, 13 Nov 2024 17:18:07 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=BF=D0=BE=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D0=BB=20=D1=81=D0=BE=D1=85=D1=80=D0=B0=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20=D1=84=D0=B8=D0=BB=D1=8C=D1=82=D1=80=D0=BE=D0=B2?= =?UTF-8?q?=D0=B0=D0=BD=D0=BD=D0=BE=D0=B3=D0=BE=20=D0=B4=D0=B0=D1=82=D0=B0?= =?UTF-8?q?=D1=84=D1=80=D0=B5=D0=B9=D0=BC=D0=B0=20=D0=B2=20csv?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/tuning/tuner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tuning/tuner.py b/src/tuning/tuner.py index 89d1efa..b930cde 100644 --- a/src/tuning/tuner.py +++ b/src/tuning/tuner.py @@ -18,7 +18,7 @@ class Tuner(AbstractTuner): df = pd.read_csv(filepath) df_filtered = tools.filter_signal(df, sigma, "Electrode Force, N ME", "Electrode Force, N FE") remove(filepath) - df_filtered.to_csv(filepath) + df_filtered.to_csv(filepath, index=False) def notify(self, obj: SubscriptionObject, filename: str): local_path = path.join(obj.buffer, filename)