Hi everyone: in Orion would it be possible to call...
# ask-community
f
Hi everyone: in Orion would it be possible to call a task from within a task?
a
@Florian Boucault You can run any Python code in your tasks and flows, so you should be able to execute any custom functions within your tasks. But calling a task from another task would raise:
Copy code
RuntimeError: Tasks cannot be called from within tasks. Did you mean to call this task in a flow?
f
thanks a bunch @Anna Geller