From 335836594b27d619bad06bd9c25d9aff4b06a79e Mon Sep 17 00:00:00 2001 From: Lorenzo Pisani Date: Wed, 11 Dec 2024 19:19:50 -0800 Subject: [PATCH] fix docstring fixes #343 --- rats-devtools/src/python/rats/ci/_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rats-devtools/src/python/rats/ci/_commands.py b/rats-devtools/src/python/rats/ci/_commands.py index e5bb7943..ec497d80 100644 --- a/rats-devtools/src/python/rats/ci/_commands.py +++ b/rats-devtools/src/python/rats/ci/_commands.py @@ -75,7 +75,7 @@ def build_wheel(self) -> None: @cli.command() def build_image(self) -> None: - """Update the version of the package found in pyproject.toml.""" + """Build a container image of the component.""" self._project_tools().build_component_image(self._selected_component().find_path(".").name) @cli.command()