Skip to content
Snippets Groups Projects
Commit cf644cf9 authored by Bienchen's avatar Bienchen
Browse files

Merge branch 'develop' into pipeline

parents 4fd99de1 549bc614
Branches
Tags
No related merge requests found
...@@ -70,7 +70,11 @@ class Python(base.FileCheck): ...@@ -70,7 +70,11 @@ class Python(base.FileCheck):
'unused-argument': 'unused-argument':
"Line %(line)s: Argument defined which is not used by the "+ "Line %(line)s: Argument defined which is not used by the "+
"function/ method. This should be avoided since it may create "+ "function/ method. This should be avoided since it may create "+
"unnecessary dependencies inside the calling code." "unnecessary dependencies inside the calling code.",
'no-self-use':
"Line %(line)s: This class method does not use 'self', its own "+
"instance. Therefore it should be a '@staticmethod' or not a "+
"member of this class at all."
} }
if msg[1] not in msg_dict.keys(): if msg[1] not in msg_dict.keys():
pm3_csc.FailMsg("Found a pylint message for the first time: "+ pm3_csc.FailMsg("Found a pylint message for the first time: "+
... ...
......
...@@ -98,6 +98,7 @@ def _GetFileType(filepath): ...@@ -98,6 +98,7 @@ def _GetFileType(filepath):
'CMakeLists.txt' : 'cmake', 'CMakeLists.txt' : 'cmake',
'.cmake' : 'cmake', '.cmake' : 'cmake',
'.pdb' : 'ukn', '.pdb' : 'ukn',
'.pdb.gz': 'ukn',
'.fasta' : 'ukn', '.fasta' : 'ukn',
'.fas' : 'ukn'} '.fas' : 'ukn'}
for ext in known_extensions.keys(): for ext in known_extensions.keys():
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment