We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f1dd8f commit adee32dCopy full SHA for adee32d
2 files changed
hello_nexus/basic/caller/workflows.py
@@ -1,7 +1,8 @@
1
from temporalio import workflow
2
from temporalio.workflow import NexusClient
3
4
-from hello_nexus.basic.service import MyInput, MyNexusService, MyOutput
+with workflow.unsafe.imports_passed_through():
5
+ from hello_nexus.basic.service import MyInput, MyNexusService, MyOutput
6
7
NEXUS_ENDPOINT = "my-nexus-endpoint"
8
hello_nexus/basic/handler/workflows.py
@@ -1,6 +1,7 @@
-from hello_nexus.basic.service import MyInput, MyOutput
+ from hello_nexus.basic.service import MyInput, MyOutput
# This is the workflow that is started by the `my_workflow_run_operation` nexus operation.
0 commit comments