re: custom Actions, the docs say this about instal...
# getting-started
f
re: custom Actions, the docs say this about installing a custom action:
The easiest way to do this is to just place it in the same directory as your configuration file, in which case the module name is the same as the file name - in this case it will be
custom_action
.
rn my file is
my_action.py
, in the same dir as my
my_action.yaml
config file. however, having
type: my_action:ActionClassInside
doesn’t work. what should the correct format be?
😀 1
c
can you try to have same file name as that of class name? Something like
custom_action:CustomAction
f
thanks! in the end i didn’t get the local file version working, but did the pip version instead with
type: package.file:Class
. in this case at least, they didnt need to be the same