From 83676927b58e3a1dadff48b04a6497f44eefe7ad Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 12 Apr 2022 15:59:20 +0800 Subject: [PATCH] examples/simple_simulation: fix --- artiq/examples/no_hardware/repository/simple_simulation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/examples/no_hardware/repository/simple_simulation.py b/artiq/examples/no_hardware/repository/simple_simulation.py index 1b9205825..e07c6f770 100644 --- a/artiq/examples/no_hardware/repository/simple_simulation.py +++ b/artiq/examples/no_hardware/repository/simple_simulation.py @@ -27,7 +27,7 @@ def main(): dmgr["core"] = devices.Core(dmgr) for wo in "abcd": dmgr[wo] = devices.WaveOutput(dmgr, wo) - exp = SimpleSimulation(dmgr) + exp = SimpleSimulation((dmgr, None, None, {})) exp.run() if __name__ == "__main__":