https://dagster.io/ logo
#ask-community
Title
# ask-community
e

Eric Larson

06/06/2022, 10:28 PM
I have a group of Software Defined Assets, and all is working, but I wanted to experiment with
namespace
and added one to the
@asset
definition, but have not figured out what to pass to
AssetGroup
it complains if I just pass in the function name declared for the
@asset
Copy code
@asset (namespace='test') 
def my_asset():
  pass

AssetGroup([my_asset])
o

owen

06/06/2022, 10:54 PM
hi @Eric Larson I'm wondering if that space in between `@asset`and
(namespace=...)
is messing things up
e

Eric Larson

06/06/2022, 10:58 PM
actually never mind I defined a job that was using the asset I added the namespace to and that was messing things up. All is good.
1