From 2878695d5f35cc9d81f24e4844fdc1988d10cb26 Mon Sep 17 00:00:00 2001 From: VinciGit00 Date: Sat, 4 May 2024 21:26:19 +0200 Subject: [PATCH] fix: trailing whitespace --- scrapegraphai/graphs/base_graph.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scrapegraphai/graphs/base_graph.py b/scrapegraphai/graphs/base_graph.py index 5dd4cac4..867d774f 100644 --- a/scrapegraphai/graphs/base_graph.py +++ b/scrapegraphai/graphs/base_graph.py @@ -7,6 +7,7 @@ import warnings from langchain_community.callbacks import get_openai_callback from typing import Tuple + class BaseGraph: """ BaseGraph manages the execution flow of a graph composed of interconnected nodes. @@ -82,7 +83,7 @@ class BaseGraph: Returns: Tuple[dict, list]: A tuple containing the final state and a list of execution info. """ - + current_node_name = self.nodes[0] state = initial_state