Skip to content

Commit 4c93671

Browse files
committed
lint
1 parent ef763d3 commit 4c93671

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

examples/tutorials/10_async/10_temporal/060_open_ai_agents_sdk_hello_world/project/run_worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import asyncio
22

3-
from project.workflow import ExampleTutorialWorkflow
43
from temporalio.contrib.openai_agents import OpenAIAgentsPlugin
54

5+
from project.workflow import ExampleTutorialWorkflow
66
from agentex.lib.utils.debug import setup_debug_if_enabled
77
from agentex.lib.utils.logging import make_logger
88
from agentex.lib.environment_variables import EnvironmentVariables

examples/tutorials/10_async/10_temporal/070_open_ai_agents_sdk_tools/project/run_worker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import asyncio
22
from datetime import timedelta
33

4-
from project.workflow import ExampleTutorialWorkflow
5-
from project.activities import get_weather, deposit_money, withdraw_money
64
from temporalio.contrib.openai_agents import OpenAIAgentsPlugin, ModelActivityParameters
75

6+
from project.workflow import ExampleTutorialWorkflow
7+
from project.activities import get_weather, deposit_money, withdraw_money
88
from agentex.lib.utils.debug import setup_debug_if_enabled
99
from agentex.lib.utils.logging import make_logger
1010
from agentex.lib.environment_variables import EnvironmentVariables

examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/run_worker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import asyncio
22
from datetime import timedelta
33

4-
from project.workflow import ChildWorkflow, ExampleTutorialWorkflow
5-
from project.activities import confirm_order, deposit_money, withdraw_money
64
from temporalio.contrib.openai_agents import OpenAIAgentsPlugin, ModelActivityParameters
75

6+
from project.workflow import ChildWorkflow, ExampleTutorialWorkflow
7+
from project.activities import confirm_order, deposit_money, withdraw_money
88
from agentex.lib.utils.debug import setup_debug_if_enabled
99
from agentex.lib.utils.logging import make_logger
1010
from agentex.lib.environment_variables import EnvironmentVariables

examples/tutorials/10_async/10_temporal/080_open_ai_agents_sdk_human_in_the_loop/project/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828

2929
from agents import Agent, Runner
3030
from temporalio import workflow
31-
from project.tools import wait_for_confirmation
3231

3332
from agentex.lib import adk
33+
from project.tools import wait_for_confirmation
3434
from agentex.lib.types.acp import SendEventParams, CreateTaskParams
3535
from agentex.lib.utils.logging import make_logger
3636
from agentex.types.text_content import TextContent

0 commit comments

Comments
 (0)