diff --git a/scrapegraphai/nodes/parse_html_node.py b/scrapegraphai/nodes/parse_html_node.py
index 06358599..44a67d0f 100644
--- a/scrapegraphai/nodes/parse_html_node.py
+++ b/scrapegraphai/nodes/parse_html_node.py
@@ -28,12 +28,11 @@ class ParseHTMLNode(BaseNode):
the specified tags, if provided, and updates the state with the parsed content.
"""
- def __init__(self, llm, node_name="ParseHTMLNode"):
+ def __init__(self, node_name="ParseHTMLNode"):
"""
Initializes the ParseHTMLNode with a node name.
"""
super().__init__(node_name, "parseHTML")
- self.llm = llm
def execute(self, state):
"""