Skip to content

Commit ea08a8a

Browse files
committed
🎨 format app script further
1 parent c4925d6 commit ea08a8a

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

gui/app.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
customtkinter.set_default_color_theme("dark-blue")
3232

3333

34+
##########################################################################################
3435
# callbacks
3536
def create_run_vuegen(is_dir, config_path, report_type, run_streamlit):
3637
def inner():
@@ -63,12 +64,7 @@ def radio_button_callback():
6364
return radio_button_callback
6465

6566

66-
# Options
67-
68-
# get list of report types from Enum
69-
report_types = [report_type.value.lower() for report_type in ReportType]
70-
71-
67+
##########################################################################################
7268
# APP
7369
app = customtkinter.CTk()
7470
app.geometry("460x400")
@@ -110,6 +106,9 @@ def radio_button_callback():
110106

111107
##########################################################################################
112108
# Report type dropdown
109+
# - get list of report types from Enum
110+
report_types = [report_type.value.lower() for report_type in ReportType]
111+
113112
ctk_label_report = customtkinter.CTkLabel(
114113
app,
115114
text="Select type of report to generate (use streamlit for now)",

0 commit comments

Comments
 (0)