From 8bd26b56f37ba01976bc18dd519015e6f2e81762 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Mon, 11 Apr 2022 10:59:15 +0200 Subject: [PATCH] fix bug about version --- ereuse_devicehub/parser/parser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ereuse_devicehub/parser/parser.py b/ereuse_devicehub/parser/parser.py index 17b0f9aa..9f293063 100644 --- a/ereuse_devicehub/parser/parser.py +++ b/ereuse_devicehub/parser/parser.py @@ -35,7 +35,7 @@ class ParseSnapshot: "components": self.components, "uuid": snapshot['uuid'], "type": snapshot['type'], - "version": snapshot["version"], + "version": "14.0.0", "endTime": snapshot["timestamp"], "elapsed": 1, "wbid": snapshot["wbid"], @@ -335,7 +335,7 @@ class ParseSnapshotLsHw: "software": "Workbench", "components": self.components, "uuid": snapshot['uuid'], - "version": snapshot["version"], + "version": "14.0.0", "endTime": snapshot["timestamp"], "elapsed": 1, "wbid": snapshot["wbid"],