diff --git a/soitool/setup_settings.py b/soitool/setup_settings.py
index f186cba2e027d647b9b52a2072fef870f49220f7..43200fdcf994340ebeb60ba4bc644c45af5e747f 100644
--- a/soitool/setup_settings.py
+++ b/soitool/setup_settings.py
@@ -158,7 +158,7 @@ class Setup(AcceptRejectDialog):  # pylint: disable = R0902
 
         self.layout_content.addLayout(self.layout_setup)
 
-    def accept(self):
+    def accept(self):  # pylint: disable = R0912
         """Save and update the SOI with the given changes.
 
         Overriden to implement custom behavior on accept, executes superclass'
@@ -213,7 +213,7 @@ class Setup(AcceptRejectDialog):  # pylint: disable = R0902
 
         super().accept()
 
-    def get_from_soi(self):
+    def get_from_soi(self):  # pylint: disable = R0912
         """Get data from the SOI and update the dialog with the data."""
         self.edit_title.setText(self.soi.title)
         self.edit_description.setText(self.soi.description)