We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f154ab commit 41767bbCopy full SHA for 41767bb
src/roswire/roswire.py
@@ -92,8 +92,7 @@ def launch(self,
92
image: str,
93
description: Optional[SystemDescription] = None
94
) -> Iterator[System]:
95
- """
96
- Launches a ROS application using a provided Docker image.
+ """Launches a ROS application using a provided Docker image.
97
98
Parameters
99
----------
@@ -105,7 +104,7 @@ def launch(self,
105
104
from the cache or else build one.
106
"""
107
if not description:
108
- description = self.descriptions.build(image)
+ description = self.descriptions.load_or_build(image)
109
with self.containers.launch(image) as container:
110
container = container
111
yield System(container, description)
0 commit comments