We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 716967a commit 0103efbCopy full SHA for 0103efb
pydantic_graph/pydantic_graph/beta/mermaid.py
@@ -145,6 +145,8 @@ def render(
145
node_lines = [f' state {node.id} <<choice>>']
146
if node.note:
147
node_lines.append(f' note right of {node.id}\n {node.note}\n end note')
148
+ else: # pragma: no cover
149
+ assert_never(node.kind)
150
lines.extend(node_lines)
151
152
lines.append('')
0 commit comments