Describe the bug
For the hello_world example, the build command is creating incorrect import statement:
from ...add_two_numbers import add_two_numbers
Instead it should be creating:
from ..hello_world_application.add_two_numbers import add_two_numbers
In my scenario, the hello_world_application folder is inside the workflow folderpath and a sibling of the _commands folder.
Describe the bug
For the hello_world example, the build command is creating incorrect import statement:
from ...add_two_numbers import add_two_numbers
Instead it should be creating:
from ..hello_world_application.add_two_numbers import add_two_numbers
In my scenario, the hello_world_application folder is inside the workflow folderpath and a sibling of the _commands folder.