From 4ca6657c6169d4fb076ea547fde18d72111bd7a1 Mon Sep 17 00:00:00 2001 From: LemonNexus Date: Fri, 13 Feb 2026 15:16:51 +0000 Subject: [PATCH] fix: SyntaxError in eu_styles.py - incorrect quote closing Fixed: 'table' and 'tab' style entries had mismatched quotes Changed: Closing quotes from "' to """ to match opening quotes This was causing: SyntaxError: invalid decimal literal --- projects/EU-Utility/core/eu_styles.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/EU-Utility/core/eu_styles.py b/projects/EU-Utility/core/eu_styles.py index 9bcc29d..e73d118 100644 --- a/projects/EU-Utility/core/eu_styles.py +++ b/projects/EU-Utility/core/eu_styles.py @@ -146,7 +146,7 @@ EU_STYLES = { font-weight: bold; font-size: 11px; }} - ""', + """, 'progress_bar': f""" QProgressBar {{ @@ -181,7 +181,7 @@ EU_STYLES = { background-color: rgba(45, 50, 70, 240); color: {EU_COLORS['text_secondary']}; }} - ""', + """, 'floating_icon': f""" QLabel {{ @@ -197,7 +197,7 @@ EU_STYLES = { border: 1px solid {EU_COLORS['accent_orange']}; border-radius: {EU_RADIUS['small']}; }} - ""', + """, } def get_eu_style(style_name):