From 8b1f38b015a6dea501a007fdc7daed4a9f757f34 Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Sun, 12 Mar 2023 19:01:54 +0000 Subject: [PATCH] worker_impl: Remove misleading update() from ExamineDatasetMgr [nfc] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `update(mod)` would be on the DatasetDB, not the manager. Rather, modifications currently just fail due to e.g. `set(…)` not being defined. --- artiq/master/worker_impl.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/artiq/master/worker_impl.py b/artiq/master/worker_impl.py index 719ff40a8..ed7ec748e 100644 --- a/artiq/master/worker_impl.py +++ b/artiq/master/worker_impl.py @@ -186,10 +186,6 @@ class ExamineDatasetMgr: def get(key, archive=False): return ParentDatasetDB.get(key) - @staticmethod - def update(self, mod): - pass - def examine(device_mgr, dataset_mgr, file): previous_keys = set(sys.modules.keys())