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__":