Skip to content
Snippets Groups Projects
Commit b4dd3ec6 authored by Owen Arnold's avatar Owen Arnold
Browse files

refs #13874. constructor issues.

parent 51174bc1
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ import numpy as np ...@@ -8,7 +8,7 @@ import numpy as np
class DetectorFloodWeighting(DataProcessorAlgorithm): class DetectorFloodWeighting(DataProcessorAlgorithm):
def __init__(self): def __init__(self):
super.__init__(self, DataProcessorAlgorithm) DataProcessorAlgorithm.__init__(self)
def category(self): def category(self):
return 'Workflow\\SANS' return 'Workflow\\SANS'
...@@ -110,5 +110,4 @@ class DetectorFloodWeighting(DataProcessorAlgorithm): ...@@ -110,5 +110,4 @@ class DetectorFloodWeighting(DataProcessorAlgorithm):
self.setProperty('OutputWorkspace', normalized) self.setProperty('OutputWorkspace', normalized)
# Register algorithm with Mantid # Register alg
AlgorithmFactory.subscribe(DetectorFloodWeighting) \ No newline at end of file
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