From 9523928ed617555c720364391437a40d53493d87 Mon Sep 17 00:00:00 2001
From: Elliot Oram <Elliot.Oram@stfc.ac.uk>
Date: Fri, 23 Oct 2015 08:23:49 +0100
Subject: [PATCH] disabled unavoidable pylint warnings

Refs #13826
---
 .../plugins/algorithms/WorkflowAlgorithms/QLRun.py            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Framework/PythonInterface/plugins/algorithms/WorkflowAlgorithms/QLRun.py b/Framework/PythonInterface/plugins/algorithms/WorkflowAlgorithms/QLRun.py
index aecc1e30dd7..ee30006531c 100644
--- a/Framework/PythonInterface/plugins/algorithms/WorkflowAlgorithms/QLRun.py
+++ b/Framework/PythonInterface/plugins/algorithms/WorkflowAlgorithms/QLRun.py
@@ -1,4 +1,4 @@
-#pylint: disable=no-init
+#pylint: disable=invalid-name,too-many-instance-attributes,too-many-branches,no-init
 from IndirectImport import *
 
 from mantid.api import PythonAlgorithm, AlgorithmFactory, MatrixWorkspaceProperty, PropertyMode, WorkspaceGroupProperty
@@ -126,7 +126,7 @@ class QLRun(PythonAlgorithm):
         self._save = self.getProperty('Save').value
         self._plot = self.getPropertyValue('Plot')
 
-
+    #pylint: disable=too-many-locals
     def PyExec(self):
         #from IndirectImport import run_f2py_compatibility_test, is_supported_f2py_platform
 
-- 
GitLab