how does one reference an asset in another asset i...
# ask-community
b
how does one reference an asset in another asset if the first asset has a key prefix?
o
Hi @Ben Kimpel! This page has some information on the topic, but in short:
Copy code
@asset(ins={"my_input_asset": AssetIn(key_prefix="prefix")})
def my_asset(my_input_asset):
    ...
b
Ohhhhhhh! Thank you! ❤️