2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-29 21:23:34 +08:00

worker_impl: Remove misleading update() from ExamineDatasetMgr [nfc]

`update(mod)` would be on the DatasetDB, not the manager. Rather,
modifications currently just fail due to e.g. `set(…)` not being
defined.
This commit is contained in:
David Nadlinger 2023-03-12 19:01:54 +00:00 committed by Sébastien Bourdeauducq
parent bbf80875fb
commit 8b1f38b015

View File

@ -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())