Skip to content
Snippets Groups Projects
Commit 564627c7 authored by WHITFIELDRE email's avatar WHITFIELDRE email
Browse files

Ignore complexity

parent 8252dc20
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment