Fazil Topal
09/19/2024, 10:10 AMpipelines/data.py
@node(inputs=..., outputs=...)
def preprocess(...):
...
The reason why i ask is because my nodes are growing and it is becoming a bit tiring to go import my function, do the kedro wiring and occasionally I have typos as i forgot about the function signature. Something like this would be quite nice to declare.Juan Luis
09/19/2024, 10:20 AMJuan Luis
09/19/2024, 10:21 AMFazil Topal
09/19/2024, 10:26 AMJuan Luis
09/19/2024, 11:19 AMfunctools.wraps
would do the trick.
it's the reason why we don't promote that syntax though