Hi Team, I have always had this question, but neve...
# questions
j
Hi Team, I have always had this question, but never asked before: Here I have a very short & simple pipeline (look at the picture) and I have notice that the
Run Command
of every function starts with
None.
for instance in the picture you can read
kedro run --to-nodes=None.clean_mdt
why is this? my pipeline executes just fine without any issues after a regular
kedro run
. If I do a
kedro run --to-nodes=None.clean_mdt
I'll get an error so I manually need to erase the
None.
before running. So running this instead works just fine
kedro run --to-nodes=clean_mdt
~If I do a
kedro run --to-nodes=None.clean_mdt
I'll get this: but without the
None.
it executes just fine as: `kedro run --to-nodes=clean_mdt`~
d
My guess is that a python
None
is getting strigified somewhere in the Viz code
It’s potentially an edge case we’ve not see before
Does that node have a namespace?
j
Nope, should I always add namespaces? What is the purpose of the namespace? Here's an example, all my nodes look pretty much the same