More pylint-ing-fu.
This commit is contained in:
2
Makefile
2
Makefile
@ -1,7 +1,7 @@
|
||||
# This file has been auto-generated.
|
||||
# All changes will be lost, see Projectfile.
|
||||
#
|
||||
# Updated at 2016-12-26 11:52:20.154236
|
||||
# Updated at 2016-12-26 14:09:09.609408
|
||||
|
||||
PYTHON ?= $(shell which python)
|
||||
PYTHON_BASENAME ?= $(shell basename $(PYTHON))
|
||||
|
||||
@ -40,5 +40,5 @@ def tee(f):
|
||||
log = tee(pprint.pprint)
|
||||
|
||||
|
||||
def noop(*args, **kwargs):
|
||||
def noop(*args, **kwargs): # pylint: disable=unused-argument
|
||||
pass
|
||||
|
||||
@ -25,6 +25,6 @@ get_initializer, set_initializer = _create_lifecycle_functions('initializer', 'i
|
||||
get_finalizer, set_finalizer = _create_lifecycle_functions('finalizer', 'finalize')
|
||||
|
||||
|
||||
def with_context(f):
|
||||
f._with_context = True
|
||||
return f
|
||||
def with_context(func):
|
||||
func._with_context = True
|
||||
return func
|
||||
|
||||
Reference in New Issue
Block a user