From 2b4f4f12beca70928c1200e5df0e5a43288c506c Mon Sep 17 00:00:00 2001 From: Djamel Feddad Date: Sun, 23 Jun 2024 15:34:48 +0800 Subject: [PATCH] doc: Fixed a small typo in the warning message This PR fixes a small type in the warning message --- scrapegraphai/graphs/base_graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapegraphai/graphs/base_graph.py b/scrapegraphai/graphs/base_graph.py index 33c259bb..df2845fa 100644 --- a/scrapegraphai/graphs/base_graph.py +++ b/scrapegraphai/graphs/base_graph.py @@ -55,7 +55,7 @@ def __init__(self, nodes: list, edges: list, entry_point: str, use_burr: bool = if nodes[0].node_name != entry_point.node_name: # raise a warning if the entry point is not the first node in the list warnings.warn( - "Careful! The entry point node is different from the first node if the graph.") + "Careful! The entry point node is different from the first node in the graph.") # Burr configuration self.use_burr = use_burr