Skip to content
Snippets Groups Projects
Commit a4d03a6d authored by Elliot Oram's avatar Elliot Oram
Browse files

Fixed Pylint error for statment number and unused import

Refs #13826
parent a8db58a4
No related branches found
No related tags found
No related merge requests found
...@@ -131,7 +131,7 @@ class QLRun(PythonAlgorithm): ...@@ -131,7 +131,7 @@ class QLRun(PythonAlgorithm):
self._save = self.getProperty('Save').value self._save = self.getProperty('Save').value
self._plot = self.getPropertyValue('Plot') self._plot = self.getPropertyValue('Plot')
#pylint: disable=too-many-locals #pylint: disable=too-many-locals,too-many-statements
def PyExec(self): def PyExec(self):
#from IndirectImport import run_f2py_compatibility_test, is_supported_f2py_platform #from IndirectImport import run_f2py_compatibility_test, is_supported_f2py_platform
...@@ -140,8 +140,7 @@ class QLRun(PythonAlgorithm): ...@@ -140,8 +140,7 @@ class QLRun(PythonAlgorithm):
from IndirectBayes import (CalcErange, GetXYE, ReadNormFile, from IndirectBayes import (CalcErange, GetXYE, ReadNormFile,
ReadWidthFile, QLAddSampleLogs, C2Fw, ReadWidthFile, QLAddSampleLogs, C2Fw,
C2Se, QuasiPlot) C2Se, QuasiPlot)
from IndirectCommon import (getDefaultWorkingDirectory, CheckXrange, from IndirectCommon import (CheckXrange, CheckAnalysers, getEfixed, GetThetaQ,
CheckAnalysers, getEfixed, GetThetaQ,
CheckHistZero, CheckHistSame) CheckHistZero, CheckHistSame)
self.log().information('QLRun input') self.log().information('QLRun input')
......
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