summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2015-04-22 20:48:22 -0600
committerkballou <kballou@devnulllabs.io>2015-04-22 20:48:22 -0600
commitf535ea7c8a036a63fce4c9c64aa4049563372692 (patch)
treea0a5c338189fb5c32599343782fa6e73164f5cb8
parent249e002f809d5c0fcdf8a19398b65271d816fcf0 (diff)
downloadxnt-f535ea7c8a036a63fce4c9c64aa4049563372692.tar.gz
xnt-f535ea7c8a036a63fce4c9c64aa4049563372692.tar.xz
linting: remove disable W0142
Pylint is no longer complaining about this warning and is in fact complaining the disable statement is being used.
-rw-r--r--xnt/tasks/core_tasks.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/xnt/tasks/core_tasks.py b/xnt/tasks/core_tasks.py
index 034347d..9a5e1e8 100644
--- a/xnt/tasks/core_tasks.py
+++ b/xnt/tasks/core_tasks.py
@@ -409,7 +409,6 @@ def __in_path__(program):
return __apply__(__which__(kwargs['program']))
return ((__execute__, {'program': program,}),)
-# pylint: disable=W0142
def __apply__(func_tuple):
'''Execute function tuple'''
error_codes = []