From 564627c799d26b73d36eff60ef34e40a580c0a43 Mon Sep 17 00:00:00 2001
From: Ross Whitfield <whitfieldre@ornl.gov>
Date: Tue, 3 Dec 2019 09:00:53 -0500
Subject: [PATCH] Ignore complexity

---
 .../PythonInterface/plugins/algorithms/ConvertWANDSCDtoQ.py   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Framework/PythonInterface/plugins/algorithms/ConvertWANDSCDtoQ.py b/Framework/PythonInterface/plugins/algorithms/ConvertWANDSCDtoQ.py
index 6aca2fe5031..dfd0d3bf027 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)
-- 
GitLab