From 2c47fe9a872f2ebbd5c0538dc11cbf3f1b63a63c Mon Sep 17 00:00:00 2001 From: Solaria Lumis Havens Date: Fri, 20 Feb 2026 02:53:49 +0000 Subject: [PATCH] fix: Remove self from nested function in get_coherence --- becomingone/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/becomingone/api.py b/becomingone/api.py index 4c3a44d..3825f69 100644 --- a/becomingone/api.py +++ b/becomingone/api.py @@ -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