You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from st2common.runners.base_action import Action
class MyTestAction(Action):
"""
StackStorm generated action that provides an entry point to Python implementation.
""" def run(self, instance_name: str) -> str:
print("Hello world")
return "my test"
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Here is the code :
from st2common.runners.base_action import Action
class MyTestAction(Action):
"""
StackStorm generated action that provides an entry point to Python implementation.
""" def run(self, instance_name: str) -> str:
print("Hello world")
return "my test"
Beta Was this translation helpful? Give feedback.
All reactions