Source code for pytapable.intercept_base
[docs]class HookInterceptor(object):
"""
Interceptors allow you to intercept actions that are being performed on hooks and optionally modify it
"""
[docs] def register(self, tap):
"""
Triggered for each added tap and allows you to modify the tap
Args:
tap (Tap): The Tap that is going to be installed on the hook
Returns:
modified_tap (Tap): The Tap to install on the hook
"""
return tap