Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/a2a_storage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

__all__ = [
"A2AContextStore",
"A2AStorageFactory",
"InMemoryA2AContextStore",
"SQLiteA2AContextStore",
"PostgresA2AContextStore",
"A2AStorageFactory",
"SQLiteA2AContextStore",
]
2 changes: 1 addition & 1 deletion src/observability/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
from observability.formats import InferenceEventData, build_inference_event
from observability.splunk import send_splunk_event

__all__ = ["send_splunk_event", "InferenceEventData", "build_inference_event"]
__all__ = ["InferenceEventData", "build_inference_event", "send_splunk_event"]
2 changes: 1 addition & 1 deletion tests/e2e/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def restart_container(container_name: str) -> None:
check=True,
)
except (subprocess.CalledProcessError, subprocess.TimeoutExpired) as e:
print(f"Failed to restart container {container_name}: {str(e.stderr)}")
print(f"Failed to restart container {container_name}: {e.stderr!s}")
raise

# Wait for container to be healthy
Expand Down
3 changes: 1 addition & 2 deletions tests/unit/app/endpoints/test_streaming_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -2369,8 +2369,7 @@ def build_mcp_tool_call_side_effect(
# Remove item from dict to simulate real behavior
# arguments parameter is required by function signature but unused here
_ = arguments
if output_index in mcp_call_items:
del mcp_call_items[output_index]
mcp_call_items.pop(output_index, None)
return mock_tool_call

mocker.patch(
Expand Down
Loading