forked from M-Labs/artiq
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:
parent
bbf80875fb
commit
8b1f38b015
|
@ -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())
|
||||
|
|
Loading…
Reference in New Issue