We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cef8be4 + 710f53f commit eba0ec4Copy full SHA for eba0ec4
1 file changed
manager/manager/launcher/launcher_tools.py
@@ -61,7 +61,9 @@ class LauncherTools(BaseModel):
61
62
def run(self, consumer):
63
for tool in self.tools:
64
- if tool == "simulator" and self.world_type:
+ if tool == "simulator":
65
+ if self.world_type is None:
66
+ continue
67
tool = simulator[self.world_type]["tool"]
68
module = tools[tool]
69
launcher = self.launch_module(tool, module, consumer)
0 commit comments