Return a pair of labels for each metric
(metric)
| 185 | |
| 186 | |
| 187 | def metric_row(metric): |
| 188 | """ Return a pair of labels for each metric """ |
| 189 | return [sg.Text(metric, font=('Arial', 10), pad=(15, 0), size=(9, 1)), |
| 190 | sg.Text(APP_DATA[metric], font=('Arial', 10, 'bold'), pad=(0, 0), size=(9, 1), key=metric)] |
| 191 | |
| 192 | |
| 193 | def create_window(win_location, settings): |