From ccc9b2a7c1dec905632242fe355eee4c04df4062 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Thu, 12 Sep 2019 15:54:09 -0700 Subject: [PATCH] Fix a linting issue --- openlp/plugins/alerts/lib/alertstab.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/alerts/lib/alertstab.py b/openlp/plugins/alerts/lib/alertstab.py index 891d700ff..a2827be88 100644 --- a/openlp/plugins/alerts/lib/alertstab.py +++ b/openlp/plugins/alerts/lib/alertstab.py @@ -65,7 +65,7 @@ class AlertsTab(SettingsTab): self.background_color_label.setObjectName('background_color_label') self.background_color_button = ColorButton(self.background_group_box) self.background_color_button.setObjectName('background_color_button') - self.background_layout.addRow(self.background_color_label,self.background_color_button) + self.background_layout.addRow(self.background_color_label, self.background_color_button) self.left_layout.addWidget(self.background_group_box) # Scroll Settings self.scroll_group_box = QtWidgets.QGroupBox(self.left_column)