Skip to content

Commit 007ff08

Browse files
authored
fix(browser_base_fetch): correct function signature and async_mode handling
- Added missing `async_mode` parameter to the function signature.
1 parent 29ef63d commit 007ff08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scrapegraphai/docloaders/browser_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
from typing import List
55

6-
def browser_base_fetch(api_key: str, project_id: str, link: List[str], text_content: bool = True) -> List[str]:
6+
def browser_base_fetch(api_key: str, project_id: str, link: List[str], text_content: bool = True, async_mode: bool = False) -> List[str]:
77
"""
88
BrowserBase Fetch
99

0 commit comments

Comments
 (0)