Skip to content

Commit 2878695

Browse files
committed
fix: trailing whitespace
1 parent b137456 commit 2878695

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scrapegraphai/graphs/base_graph.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from langchain_community.callbacks import get_openai_callback
88
from typing import Tuple
99

10+
1011
class BaseGraph:
1112
"""
1213
BaseGraph manages the execution flow of a graph composed of interconnected nodes.
@@ -82,7 +83,7 @@ def execute(self, initial_state: dict) -> Tuple[dict, list]:
8283
Returns:
8384
Tuple[dict, list]: A tuple containing the final state and a list of execution info.
8485
"""
85-
86+
8687
current_node_name = self.nodes[0]
8788
state = initial_state
8889

0 commit comments

Comments
 (0)