98 self.tasksMarkerTestEdit.setStyleSheet(f"background-color: {color.name()}") |
98 self.tasksMarkerTestEdit.setStyleSheet(f"background-color: {color.name()}") |
99 elif colorKey == "TasksDocuColor": |
99 elif colorKey == "TasksDocuColor": |
100 self.tasksMarkerDocuEdit.setStyleSheet(f"background-color: {color.name()}") |
100 self.tasksMarkerDocuEdit.setStyleSheet(f"background-color: {color.name()}") |
101 |
101 |
102 |
102 |
103 def create(dlg): # noqa: U100 |
103 def create(_dlg): |
104 """ |
104 """ |
105 Module function to create the configuration page. |
105 Module function to create the configuration page. |
106 |
106 |
107 @param dlg reference to the configuration dialog |
107 @param _dlg reference to the configuration dialog (unused) |
108 @type ConfigurationDialog |
108 @type ConfigurationDialog |
109 @return reference to the instantiated page |
109 @return reference to the instantiated page |
110 @rtype ConfigurationPageBase |
110 @rtype ConfigurationPageBase |
111 """ |
111 """ |
112 page = TasksPage() |
112 page = TasksPage() |