From 4223afaaf4bba3ca517411906c1c15e34928925f Mon Sep 17 00:00:00 2001 From: Tyler Compton Date: Tue, 9 Jan 2024 13:56:53 -0800 Subject: [PATCH] Fix up formatting --- onshape_urdf_exporter/stl_utils.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/onshape_urdf_exporter/stl_utils.py b/onshape_urdf_exporter/stl_utils.py index 6393254..90dafa3 100644 --- a/onshape_urdf_exporter/stl_utils.py +++ b/onshape_urdf_exporter/stl_utils.py @@ -30,4 +30,9 @@ def simplify_stl(path: Path) -> None: write_vertex_colors=False, ) if not success: - print(f"{Fore.YELLOW}WARNING: Failed to simplify STL {path}{Style.RESET_ALL}") + print( + f"{Fore.YELLOW}" + f"WARNING: Failed to simplify STL {path}. See above logs for " + f"clues as to why." + f"{Style.RESET_ALL}" + )