Merge pull request #406 from dfeddad/fix/typo-in-warning-message
Some checks failed
CodeQL / Analyze (python) (push) Has been cancelled
/ build (3.10) (push) Has been cancelled
Release / Build (push) Has been cancelled
Release / Release (push) Has been cancelled

Fix a small typo in the warning message
This commit is contained in:
Marco Vinciguerra 2024-06-23 13:06:39 +02:00 committed by GitHub
commit cc4eeb9d07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,7 +55,7 @@ class BaseGraph:
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