From 1b3d9b22521c91688b537412f6ced10505c9a607 Mon Sep 17 00:00:00 2001 From: thecaptain789 Date: Sat, 7 Feb 2026 12:05:13 +0000 Subject: [PATCH] fix: correct typo 'occured' to 'occurred' --- .../crewai_tools/tools/brightdata_tool/brightdata_dataset.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/crewai-tools/src/crewai_tools/tools/brightdata_tool/brightdata_dataset.py b/lib/crewai-tools/src/crewai_tools/tools/brightdata_tool/brightdata_dataset.py index ddf4a10a1a..62978daee9 100644 --- a/lib/crewai-tools/src/crewai_tools/tools/brightdata_tool/brightdata_dataset.py +++ b/lib/crewai-tools/src/crewai_tools/tools/brightdata_tool/brightdata_dataset.py @@ -591,10 +591,10 @@ def _run( ) ) except TimeoutError as e: - return f"Timeout Exception occured in method : get_dataset_data_async. Details - {e!s}" + return f"Timeout Exception occurred in method : get_dataset_data_async. Details - {e!s}" except BrightDataDatasetToolException as e: return ( - f"Exception occured in method : get_dataset_data_async. Details - {e!s}" + f"Exception occurred in method : get_dataset_data_async. Details - {e!s}" ) except Exception as e: return f"Bright Data API error: {e!s}"