before update for python 3.7:

$ pylint --disable=R,C -f colorized   netmhcstabpan_1_0_executable/
************* Module netmhcstabpan_1_0_executable
netmhcstabpan_1_0_executable/__init__.py:17:50: W0622: Redefining built-in 'format' (redefined-builtin)
netmhcstabpan_1_0_executable/__init__.py:18:4: W1201: Specify string format arguments as logging function parameters (logging-not-lazy)
netmhcstabpan_1_0_executable/__init__.py:39:20: W1202: Use % formatting in logging functions and pass the % parameters as arguments (logging-format-interpolation)
netmhcstabpan_1_0_executable/__init__.py:41:22: W1202: Use % formatting in logging functions and pass the % parameters as arguments (logging-format-interpolation)
netmhcstabpan_1_0_executable/__init__.py:50:17: W0612: Unused variable 'stderrdata' (unused-variable)

------------------------------------------------------------------
Your code has been rated at 9.02/10 (previous run: 4.71/10, +4.31)

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

$ pylint --disable=R,C -f colorized   netmhcstabpan_1_0_executable/
************* Module netmhcstabpan_1_0_executable
netmhcstabpan_1_0_executable/__init__.py:17:50: W0622: Redefining built-in 'format' (redefined-builtin)
netmhcstabpan_1_0_executable/__init__.py:50:17: W0612: Unused variable 'stderrdata' (unused-variable)

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


