Loading src/ips_fastran_gui/app/models/ips_fastran.py +1 −15 Original line number Diff line number Diff line Loading @@ -42,21 +42,7 @@ class IPSFastranTool(BasicTool): return self.tool, tool_params def get_output_paths(self) -> List[str]: outputs = self.tool.get_results() collection = outputs.get_collection("outputs") elements = collection.get_content() paths = [] for element in elements: dataset = Dataset() dataset.id = element["id"] dataset.store = collection.store path = element["element_identifier"] dataset.download(path) paths.append(path) return paths return ["f00000.00001"] def get_results(self, tool: Tool) -> bytes: outputs = tool.get_results() Loading Loading
src/ips_fastran_gui/app/models/ips_fastran.py +1 −15 Original line number Diff line number Diff line Loading @@ -42,21 +42,7 @@ class IPSFastranTool(BasicTool): return self.tool, tool_params def get_output_paths(self) -> List[str]: outputs = self.tool.get_results() collection = outputs.get_collection("outputs") elements = collection.get_content() paths = [] for element in elements: dataset = Dataset() dataset.id = element["id"] dataset.store = collection.store path = element["element_identifier"] dataset.download(path) paths.append(path) return paths return ["f00000.00001"] def get_results(self, tool: Tool) -> bytes: outputs = tool.get_results() Loading