before update for python 3.7:

$ pylint --disable=R,C -f colorized netmhccons_1_1_executable/
************* Module netmhccons_1_1_executable
netmhccons_1_1_executable/__init__.py:1:0: E0401: Unable to import 'netmhccons_1_1_python_interface' (import-error)
************* Module netmhccons_1_1_executable.netmhccons_1_1_python_interface
netmhccons_1_1_executable/netmhccons_1_1_python_interface.py:17:4: W0612: Unused variable 'allele' (unused-variable)
netmhccons_1_1_executable/netmhccons_1_1_python_interface.py:49:23: E1120: No value for argument 'sequence_list' in staticmethod call (no-value-for-parameter)
netmhccons_1_1_executable/netmhccons_1_1_python_interface.py:66:16: W1202: Use % formatting in logging functions and pass the % parameters as arguments (logging-format-interpolation)
netmhccons_1_1_executable/netmhccons_1_1_python_interface.py:83:8: W1201: Specify string format arguments as logging function parameters (logging-not-lazy)
************* Module netmhccons_1_1_executable.tests
netmhccons_1_1_executable/tests.py:26:-1: W0105: String statement has no effect (pointless-string-statement)
netmhccons_1_1_executable/tests.py:6:0: W0611: Unused import os (unused-import)
netmhccons_1_1_executable/tests.py:6:0: W0611: Unused import json (unused-import)

-----------------------------------
Your code has been rated at 8.38/10


--------------------------
after update:

$ pylint --disable=R,C -f colorized netmhccons_1_1_executable/
************* Module netmhccons_1_1_executable.netmhccons_1_1_python_interface
netmhccons_1_1_executable/netmhccons_1_1_python_interface.py:17:4: W0612: Unused variable 'allele' (unused-variable)
************* Module netmhccons_1_1_executable.tests
netmhccons_1_1_executable/tests.py:25:-1: W0105: String statement has no effect (pointless-string-statement)

------------------------------------------------------------------
Your code has been rated at 9.80/10 (previous run: 9.60/10, +0.20)

