Hi,
Is it possible to specify a parameter type that will be passed to a node function.
I have a Node, like this
Node(func=myfunc, inputs=["params:run_date"])
My func has signature def myfunc(rundate: datetime.date):
So, it looks like Kedro passes run_date as str instead of datetime.date.