From 0d8dc421d8df3d47675d56cce49fa21497aec47a Mon Sep 17 00:00:00 2001 From: Martin Date: Fri, 1 Mar 2024 16:59:57 -0600 Subject: [PATCH] Update exporter.py --- src/invent/ui/exporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/invent/ui/exporter.py b/src/invent/ui/exporter.py index ba6d2c2..fd12798 100644 --- a/src/invent/ui/exporter.py +++ b/src/invent/ui/exporter.py @@ -152,7 +152,7 @@ def _pretty_repr_component(component, lines, indent=""): lines.append(f"{indent}{type(component).__name__}(") - # The component's properties EXCEPT its content - we put that last ################# + # The component's properties EXCEPT its content - we deal with that last ########### indent += " " for property_name, property_obj in type(component).properties().items():