Is there someway I can combine the partitions of `...
# ask-community
d
Is there someway I can combine the partitions of
@asset(partitions_def=StaticPartitionsDefinition(['one', 'two']))
back together in a dependent asset?
o
Answered on github, but duplicating here -- short answer is yes!
Copy code
@asset(ins={"stuff": AssetIn(metadata={"allow_missing_partitions": True})})
def downstream_asset(context, stuff):
    ...
d
Fabulous! I didn’t expect that 🙂 Thanks.