From 26097c16fdbe62c9bc44e71efe9d5d7e9a8e63a6 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Fri, 6 Feb 2026 18:28:18 +0100 Subject: [PATCH] added a few entries to fake config; added set method to fake client --- fake.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fake.py b/fake.py index 0d44670..ac390e7 100644 --- a/fake.py +++ b/fake.py @@ -32,7 +32,9 @@ data = { "x": None, "y": [1,2,3], "aaa": "aaa", - "c": "cccccc" + "c": "cccccc", + "image_background_enable": "passive", + "function": "spectrometer.py" }, "ignored": {} @@ -51,6 +53,8 @@ class PipelineClient: return server_info def get_instance_config(self, name): return data[name] + def set_instance_config(self, name, config): + pass def get_pipelines(self): return data.keys()