Skip to content

Commit 137efce

Browse files
committed
fixing uv lock
1 parent 10af124 commit 137efce

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

src/agentex/lib/cli/commands/agents.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@
2626
from agentex.lib.cli.handlers.agent_handlers import (
2727
run_agent,
2828
build_agent,
29-
prepare_cloud_build_context,
3029
parse_build_args,
31-
CloudBuildContext,
30+
prepare_cloud_build_context,
3231
)
3332
from agentex.lib.cli.handlers.deploy_handlers import (
3433
HelmError,

src/agentex/lib/cli/handlers/agent_handlers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import annotations
22

3-
from pathlib import Path
43
from typing import NamedTuple
4+
from pathlib import Path
55

66
from rich.console import Console
77
from python_on_whales import DockerException, docker

src/agentex/lib/sdk/config/deployment_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from typing import Any, Dict
44

5-
from pydantic import ConfigDict, Field
5+
from pydantic import Field
66

77
from agentex.lib.utils.model_utils import BaseModel
88

tests/lib/cli/test_agent_handlers.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@
1010
import pytest
1111
from typer.testing import CliRunner
1212

13+
from agentex.lib.cli.commands.agents import agents
1314
from agentex.lib.cli.handlers.agent_handlers import (
1415
CloudBuildContext,
1516
parse_build_args,
1617
prepare_cloud_build_context,
1718
)
18-
from agentex.lib.cli.commands.agents import agents
19-
2019

2120
runner = CliRunner()
2221

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)