We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3fdde8 commit c4a358cCopy full SHA for c4a358c
2 files changed
pyproject.toml
@@ -157,4 +157,4 @@ source = ["memu"]
157
testpaths = ["tests"]
158
log_cli = true
159
log_cli_level = "INFO"
160
-asyncio_mode = "auto"
+asyncio_mode = "auto"
tests/test_openrouter.py
@@ -15,6 +15,7 @@
15
import json
16
import os
17
import sys
18
+from typing import Any
19
20
import pytest
21
@@ -92,7 +93,7 @@ async def test_openrouter_full_workflow():
92
93
if not os.path.exists(file_path):
94
pytest.skip(f"Test file not found: {file_path}")
95
- output_data = {}
96
+ output_data: dict[str, Any] = {}
97
98
print("\n" + "=" * 60)
99
print("[OPENROUTER] Starting full workflow test...")
0 commit comments