https://kedro.org/ logo
#questions
Title
# questions
j

Jose Nuñez

05/05/2023, 7:51 PM
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

datajoely

05/06/2023, 9:02 AM
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

Jose Nuñez

05/08/2023, 12:36 PM
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
2 Views