Delete null_handler.py

This commit is contained in:
Davorin Šego
2015-07-30 16:00:31 +02:00
parent 73f163091f
commit a7f2b025a9

View File

@@ -1,11 +0,0 @@
# pylint: disable=missing-docstring
class NullHandler(object):
"""
Responds to an any method call.
"""
def __getattr__(self, name):
def method(*args, **kwargs): # pylint: disable=unused-argument
pass
return method