From 547568ba133f20261eca2061913a8e03b8bd1441 Mon Sep 17 00:00:00 2001 From: Michael Wedel <michael.wedel@psi.ch> Date: Tue, 24 Mar 2015 17:24:50 +0100 Subject: [PATCH] Refs #11418. Fix pylint warnings --- .../plugins/algorithms/PoldiLoadCrystalData.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Code/Mantid/Framework/PythonInterface/plugins/algorithms/PoldiLoadCrystalData.py b/Code/Mantid/Framework/PythonInterface/plugins/algorithms/PoldiLoadCrystalData.py index a5f1cc9df07..797a724f024 100644 --- a/Code/Mantid/Framework/PythonInterface/plugins/algorithms/PoldiLoadCrystalData.py +++ b/Code/Mantid/Framework/PythonInterface/plugins/algorithms/PoldiLoadCrystalData.py @@ -1,4 +1,4 @@ -# pylint: disable=no-init,invalid-name,bare-except +# pylint: disable=no-init,invalid-name,too-few-public-methods from mantid.kernel import * from mantid.simpleapi import * from mantid.api import * @@ -177,4 +177,4 @@ class PoldiLoadCrystalData(PythonAlgorithm): return compound.getName() -AlgorithmFactory.subscribe(PoldiLoadCrystalData) \ No newline at end of file +AlgorithmFactory.subscribe(PoldiLoadCrystalData) -- GitLab