Source code for aws_session_recorder.lib.helpers
[docs]class AlwaysDoNothing(object):
def __getattr__(self, name):
def method(*args):
return None
return method
[docs]class AlwaysDoNothing(object):
def __getattr__(self, name):
def method(*args):
return None
return method