Skip to content
Closed
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
3 changes: 2 additions & 1 deletion integrations/hermes/tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import tempfile
import time
import uuid
from typing import Any

import pytest

Expand Down Expand Up @@ -108,7 +109,7 @@ def provider(bm, temp_bm_project, tmp_path):
p.shutdown()


def _parse_tool_result(raw):
def _parse_tool_result(raw) -> dict[str, Any] | None:
try:
d = json.loads(raw)
except Exception:
Expand Down
Loading