Skip to content

Commit

Permalink
Cache typing
Browse files Browse the repository at this point in the history
  • Loading branch information
gvieira committed Jan 27, 2024
1 parent 3f78d2b commit 92abcb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crewai/agents/cache/cache_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class CacheHandler:
"""Callback handler for tool usage."""

_cache: PrivateAttr = {} # type: ignore
_cache: dict = {}

def __init__(self):
self._cache = {}
Expand Down

0 comments on commit 92abcb6

Please sign in to comment.