Skip to content

Commit

Permalink
Fixed some pylint disable issue. Refs #11289.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdzhou committed May 4, 2015
1 parent ad3aae7 commit 0f261ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Code/Mantid/scripts/HFIRPowderReduction/Ui_MainWindow.py
@@ -1,4 +1,4 @@
#pylint: disable=invalid-name,relative-import,too-many-lines,too-many-instance-attributes,too-many-statements,line-too-longtoo-many-locals,attribute-defined-outside-init
#pylint: disable=invalid-name,relative-import,too-many-lines,too-many-instance-attributes,too-many-statements,line-too-long,too-many-locals,attribute-defined-outside-init
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file 'Ui_MainWindow.ui'
Expand Down
2 changes: 1 addition & 1 deletion Code/Mantid/scripts/HFIRPowderReduction/customize.py
Expand Up @@ -29,7 +29,7 @@ def main(argv):
# replace and add import
wbuf = ""
wbuf += "#pylint: disable=invalid-name,relative-import,too-many-lines,too-many-instance-attributes,"
wbuf += "too-many-statements,line-too-long"
wbuf += "too-many-statements,line-too-long,"
wbuf += "too-many-locals,attribute-defined-outside-init\n"
importclass = True
for line in lines:
Expand Down

0 comments on commit 0f261ab

Please sign in to comment.