Skip to content

Commit cc4eeb9

Browse files
authored
Merge pull request #406 from dfeddad/fix/typo-in-warning-message
Fix a small typo in the warning message
2 parents 62fdbcc + 2b4f4f1 commit cc4eeb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scrapegraphai/graphs/base_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def __init__(self, nodes: list, edges: list, entry_point: str, use_burr: bool =
5555
if nodes[0].node_name != entry_point.node_name:
5656
# raise a warning if the entry point is not the first node in the list
5757
warnings.warn(
58-
"Careful! The entry point node is different from the first node if the graph.")
58+
"Careful! The entry point node is different from the first node in the graph.")
5959

6060
# Burr configuration
6161
self.use_burr = use_burr

0 commit comments

Comments
 (0)