Hello, How to deal with `load_assets_from_package_...
# ask-community
d
Hello, How to deal with
load_assets_from_package_module(assets)
when the
assets
require resources ? When I simply call this function on the repo, it will trow an error for missing resources. Thanks !
🤖 1
dagster bot responded by community 1
t
try this:
Copy code
with_resources(
    load_assets_from_package_module(assets),
    {"res1": res1_resource},
)
d
Thank you !