The `BraveSearchTool` module was importing the wrong name for the standard library’s `datetime`. File: [crewai_tools/tools/brave_search_tool/brave_search_tool.py](https://github.com/crewAIInc/crewAI-tools/blob/main/crewai_tools/tools/brave_search_tool/brave_search_tool.py) > ```python > import datetime # Line 1 typo – misspelt and not a real module > … > datetime.now() # Line 13 raises AttributeError: 'datetime' has no attribute 'now' > ``` The correct syntax should be ``` import datetime from datetime ```
The
BraveSearchToolmodule was importing the wrong name for the standard library’sdatetime.File: crewai_tools/tools/brave_search_tool/brave_search_tool.py
The correct syntax should be