Add unavailable packages node
This commit is contained in:
parent
26a25aef4a
commit
101dc653f3
1 changed files with 6 additions and 0 deletions
|
|
@ -71,6 +71,12 @@ pipeline = Pipeline(
|
||||||
outputs="available",
|
outputs="available",
|
||||||
name="available",
|
name="available",
|
||||||
),
|
),
|
||||||
|
node(
|
||||||
|
lambda words, packages: list(set(words) & set(packages)),
|
||||||
|
inputs=["words", "packages"],
|
||||||
|
outputs="unavailable",
|
||||||
|
name="unavailable",
|
||||||
|
),
|
||||||
node(
|
node(
|
||||||
lambda x: x,
|
lambda x: x,
|
||||||
inputs="packages",
|
inputs="packages",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue