Skip to content

Commit e660914

Browse files
authored
Fixed Issue: Burr integration ParseNode by updating parse_node.py
Before: Using Burr Integration in SmartScraperGraph resulted in error: ValueError: Action ParseNode attempted to write to keys {'content'} that it did not declare. It declared: (['parsed_doc'])!
1 parent 79c8046 commit e660914

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

scrapegraphai/nodes/parse_node.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ def execute(self, state: dict) -> dict:
121121

122122
state.update({self.output[0]: chunks})
123123
state.update({"parsed_doc": chunks})
124-
state.update({"content": chunks})
125124

126125
if self.parse_urls:
127126
state.update({self.output[1]: link_urls})

0 commit comments

Comments
 (0)