Commit a7f2b025 by Davorin Šego

Delete null_handler.py

parent 73f16309
# 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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment