forked from M-Labs/artiq
1
0
Fork 0

browser: fix dummy device creation failure on analyze

This commit is contained in:
Egor Savkin 2022-12-01 17:45:02 +08:00 committed by Sebastien Bourdeauducq
parent ec5c1b2478
commit 47581e0de9
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ class ExperimentsArea(QtWidgets.QMdiArea):
self.worker_handlers = {
"get_device_db": lambda: {},
"get_device": lambda k: {"type": "dummy"},
"get_device": lambda key, resolve_alias=False: {"type": "dummy"},
"get_dataset": self._ddb.get,
"update_dataset": self._ddb.update,
}