Skip to content

Commit

Permalink
fix mypy checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Dev-Khant committed Sep 23, 2024
1 parent 66a1ecc commit 3517d53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crewai/memory/storage/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def save(self, value: Any, metadata: Dict[str, Any]) -> None:
def search(
self, query: str, limit: int, filters: Dict, score_threshold: float
) -> Dict[str, Any]: # type: ignore
pass
return {}

def reset(self) -> None:
pass

0 comments on commit 3517d53

Please sign in to comment.