mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 16:18:30 +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:
|
) -> None:
|
||||||
self.db_path = db_path
|
self.db_path = db_path
|
||||||
self._printer: Printer = Printer()
|
self._printer: Printer = Printer()
|
||||||
self._connection_pool = {}
|
self._connection_pool: Dict[int, sqlite3.Connection] = {}
|
||||||
self._initialize_db()
|
self._initialize_db()
|
||||||
|
|
||||||
def _get_connection(self) -> sqlite3.Connection:
|
def _get_connection(self) -> sqlite3.Connection:
|
||||||
|
|||||||
Reference in New Issue
Block a user