mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 23:58:34 +00:00
Fix type annotation for connection pool
Co-Authored-By: Joe Moura <joao@crewai.com>
This commit is contained in:
@@ -23,7 +23,7 @@ class LLMResponseCacheStorage:
|
||||
) -> None:
|
||||
self.db_path = db_path
|
||||
self._printer: Printer = Printer()
|
||||
self._connection_pool = {}
|
||||
self._connection_pool: Dict[int, sqlite3.Connection] = {}
|
||||
self._initialize_db()
|
||||
|
||||
def _get_connection(self) -> sqlite3.Connection:
|
||||
|
||||
Reference in New Issue
Block a user