Skip to content

Commit 7d39019

Browse files
authored
Merge pull request #642 from tuhinmallick/patch-1
2 parents a540139 + 57fd01f commit 7d39019

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scrapegraphai/docloaders/browser_base.py

Lines changed: 2 additions & 2 deletions
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]) -> List[str]:
6+
def browser_base_fetch(api_key: str, project_id: str, link: List[str], text_content: bool = True) -> List[str]:
77
"""
88
BrowserBase Fetch
99
@@ -50,6 +50,6 @@ def browser_base_fetch(api_key: str, project_id: str, link: List[str]) -> List[s
5050

5151
result = []
5252
for l in link:
53-
result.append(browserbase.load(l, text_content=True))
53+
result.append(browserbase.load(l, text_content=text_content))
5454

5555
return result

0 commit comments

Comments
 (0)