before update for python 3.7:

$ pylint --disable=R,C -f colorized ./netmhc_4_0_executable/
************* Module netmhc_4_0_executable
netmhc_4_0_executable/__init__.py:13:50: W0622: Redefining built-in 'format' (redefined-builtin)
netmhc_4_0_executable/__init__.py:24:16: W1202: Use % formatting in logging functions and pass the % parameters as arguments (logging-format-interpolation)
netmhc_4_0_executable/__init__.py:26:18: W1202: Use % formatting in logging functions and pass the % parameters as arguments (logging-format-interpolation)
netmhc_4_0_executable/__init__.py:34:17: W0612: Unused variable 'stderrdata' (unused-variable)
netmhc_4_0_executable/__init__.py:65:16: W0612: Unused variable 'stderrdata' (unused-variable)

------------------------------------------------------------------
Your code has been rated at 8.96/10 (previous run: 3.12/10, +5.83)


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

$ pylint --disable=R,C -f colorized ./netmhc_4_0_executable/
************* Module netmhc_4_0_executable
netmhc_4_0_executable/__init__.py:34:16: W0612: Unused variable 'stderrdata' (unused-variable)
netmhc_4_0_executable/__init__.py:67:16: W0612: Unused variable 'stderrdata' (unused-variable)

------------------------------------------------------------------
Your code has been rated at 9.59/10 (previous run: 9.58/10, +0.01)
