Skip to content

Commit 71f894e

Browse files
authored
fix: parse_html node have a bug
1 parent da451e5 commit 71f894e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scrapegraphai/nodes/parse_node.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(
4141
False if node_config is None else node_config.get("verbose", False)
4242
)
4343
self.parse_html = (
44-
True if node_config is None else node_config.get("parse_html", True)
44+
True if node_config is None else node_config.get("parse_html", False)
4545
)
4646

4747
def execute(self, state: dict) -> dict:
@@ -94,4 +94,4 @@ def execute(self, state: dict) -> dict:
9494

9595
state.update({self.output[0]: chunks})
9696

97-
return state
97+
return state

0 commit comments

Comments
 (0)