diff --git a/Framework/PythonInterface/plugins/algorithms/ConvertWANDSCDtoQ.py b/Framework/PythonInterface/plugins/algorithms/ConvertWANDSCDtoQ.py
index 6aca2fe5031de43f1288f77300c0c1b2492d2259..dfd0d3bf02742b9a3fdf1bc4d5b648d12c03d02b 100644
--- a/Framework/PythonInterface/plugins/algorithms/ConvertWANDSCDtoQ.py
+++ b/Framework/PythonInterface/plugins/algorithms/ConvertWANDSCDtoQ.py
@@ -71,7 +71,7 @@ class ConvertWANDSCDtoQ(PythonAlgorithm):
                                                direction=Direction.Output),
                              "Output Workspace")
 
-    def validateInputs(self):
+    def validateInputs(self):  # noqa C901
         issues = dict()
 
         inWS = self.getProperty("InputWorkspace").value
@@ -147,7 +147,7 @@ class ConvertWANDSCDtoQ(PythonAlgorithm):
 
         return issues
 
-    def PyExec(self):
+    def PyExec(self):  # noqa C901
         inWS = self.getProperty("InputWorkspace").value
         normWS = self.getProperty("NormalisationWorkspace").value
         _norm = bool(normWS)