diff --git a/applications/aws_dashboard/app.py b/applications/aws_dashboard/app.py index 43da9ec66..def0fde73 100644 --- a/applications/aws_dashboard/app.py +++ b/applications/aws_dashboard/app.py @@ -19,7 +19,11 @@ current_dir = os.path.dirname(os.path.abspath(__file__)) # Set Plotly template -template_file = os.path.join(current_dir, "assets", "darkly_custom.json") if USE_DARK_THEME else os.path.join(current_dir, "assets", "flatly.json") +template_file = ( + os.path.join(current_dir, "assets", "darkly_custom.json") + if USE_DARK_THEME + else os.path.join(current_dir, "assets", "flatly.json") +) with open(template_file, "r") as f: template = json.load(f)