Skip to content

Commit

Permalink
fix(browser_base_fetch): correct function signature and async_mode ha…
Browse files Browse the repository at this point in the history
…ndling

- Added missing `async_mode` parameter to the function signature.
  • Loading branch information
tuhinmallick authored Sep 8, 2024
1 parent 29ef63d commit 007ff08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapegraphai/docloaders/browser_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
from typing import List

def browser_base_fetch(api_key: str, project_id: str, link: List[str], text_content: bool = True) -> List[str]:
def browser_base_fetch(api_key: str, project_id: str, link: List[str], text_content: bool = True, async_mode: bool = False) -> List[str]:
"""
BrowserBase Fetch
Expand Down

0 comments on commit 007ff08

Please sign in to comment.