From 3d1f8ee5fa03f1ff42d24b16a84aff9e6e33d5a2 Mon Sep 17 00:00:00 2001 From: Ale Martinez Date: Wed, 7 Oct 2020 17:07:31 -0300 Subject: [PATCH] Fix Data Series constants in library.py Added GC.SERIES_LPCO, following values shifted by one, and GC.SERIES_HRV removed. Fixes #3625 --- src/Resources/python/library.py | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/Resources/python/library.py b/src/Resources/python/library.py index 6f4d08767..bf905d42b 100644 --- a/src/Resources/python/library.py +++ b/src/Resources/python/library.py @@ -119,18 +119,18 @@ GC.SERIES_RCONTACT = 36 GC.SERIES_GEAR = 37 GC.SERIES_O2HB = 38 GC.SERIES_HHB = 39 -GC.SERIES_RPCO = 40 -GC.SERIES_LPPB = 41 -GC.SERIES_RPPB = 42 -GC.SERIES_LPPE = 43 -GC.SERIES_RPPE = 44 -GC.SERIES_LPPPB = 45 -GC.SERIES_RPPPB = 46 -GC.SERIES_LPPPE = 47 -GC.SERIES_RPPPE = 48 -GC.SERIES_WBAL = 49 -GC.SERIES_TCORE = 50 -GC.SERIES_CLENGTH = 51 -GC.SERIES_APOWERKG = 52 -GC.SERIES_INDEX = 53 -GC.SERIES_HRV = 54 +GC.SERIES_LPCO = 40 +GC.SERIES_RPCO = 41 +GC.SERIES_LPPB = 42 +GC.SERIES_RPPB = 43 +GC.SERIES_LPPE = 44 +GC.SERIES_RPPE = 45 +GC.SERIES_LPPPB = 46 +GC.SERIES_RPPPB = 47 +GC.SERIES_LPPPE = 48 +GC.SERIES_RPPPE = 49 +GC.SERIES_WBAL = 50 +GC.SERIES_TCORE = 51 +GC.SERIES_CLENGTH = 52 +GC.SERIES_APOWERKG = 53 +GC.SERIES_INDEX = 54