I changed the method to: ``` @hook_impl def before...
# beginners-need-help
r
I changed the method to:
Copy code
@hook_impl
def before_node_run(self, node: Node):
    # adding extra behaviour to a all nodes
    print(f"Hello from {node.name}")
Which should print before each node right? But still nothing.