From e83d90177993877c0ca5a9996e8eda26c45935a7 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Thu, 14 Nov 2024 21:49:03 +0000 Subject: [PATCH] env.py: fix crash --- aimodel/src/lib/primitives/env.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aimodel/src/lib/primitives/env.py b/aimodel/src/lib/primitives/env.py index 7ab0c3a..c90928e 100644 --- a/aimodel/src/lib/primitives/env.py +++ b/aimodel/src/lib/primitives/env.py @@ -8,6 +8,7 @@ import os ### ## Changelog: +# 2024-11-14: Fix crash on line #107 unterminated string literal # 2024-09-29: Create this changelog, prepare for reuse ############################################################################## @@ -104,8 +105,7 @@ def print_all(table=True): # Create the table format string - format_string = f"| {{:<{width_name}}} | {{:<{ - width_type}}} | {{:<{width_value}}} | {{:<{width_flags}}} |" + format_string = f"| {{:<{width_name}}} | {{:<{width_type}}} | {{:<{width_value}}} | {{:<{width_flags}}} |" # Calculate total width total_width = width_name + width_type + width_value + \