fix: Remove self from nested function in get_coherence

This commit is contained in:
2026-02-20 02:53:49 +00:00
parent 3117dea0e6
commit 2c47fe9a87
+1 -1
View File
@@ -144,7 +144,7 @@ async def get_coherence() -> Dict[str, Any]:
sync = _engine_components.get("sync")
# Convert deque to list for JSON serialization
def deque_to_list(self, d: Any) -> Any:
def deque_to_list(d: Any) -> Any:
"""Safely convert deque to list, handling various types."""
if d is None:
return None