Hi all, I have a solid that I'm using the `my_soli...
# announcements
b
Hi all, I have a solid that I'm using the
my_solid.alias('some alias')
command with and getting this error:
Copy code
dagster.core.errors.DagsterUserCodeProcessError: (AttributeError) - AttributeError: module 'repository.utils.solids.my_solid' has no attribute 'alias'
Is the
.alias
function still valid on solids or have things changed for how to do this? Thanks!
s
it looks like you are trying to call this on a module rather than a solid
did you do
import my_solid
instead of
from my_solid import my_solid
?
b
yeah that's what was happening I figured out my issue. Thanks!!
👍 1