Commit a62ef9ff by Davorin Sego

quality

parent 7a923cf5
# 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
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