File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ from temporalio import workflow
164164
165165# Import our activity, passing it through the sandbox
166166with workflow.unsafe.imports_passed_through():
167- from . activities import say_hello
167+ from activities import say_hello
168168
169169@workflow.defn
170170class SayHello :
@@ -184,8 +184,8 @@ from temporalio.client import Client
184184from temporalio.worker import Worker
185185
186186# Import the activity and workflow from our other files
187- from . activities import say_hello
188- from . workflows import SayHello
187+ from activities import say_hello
188+ from workflows import SayHello
189189
190190async def main ():
191191 # Create client connected to server at the given address
@@ -220,7 +220,7 @@ import asyncio
220220from temporalio.client import Client
221221
222222# Import the workflow from the previous code
223- from . workflows import SayHello
223+ from workflows import SayHello
224224
225225async def main ():
226226 # Create client connected to server at the given address
You can’t perform that action at this time.
0 commit comments