Skip to content

Commit f886db8

Browse files
committed
chore: ruff foramt
1 parent 5c68e93 commit f886db8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

scripts/doc/generate_graph_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ async def generate_graph_docs():
5252

5353
# Generate mermaid text (this doesn't require pyppeteer)
5454
mermaid_text = graph.get_graph().draw_mermaid()
55-
55+
5656
# Save mermaid text to temporary file
5757
with tempfile.NamedTemporaryFile(mode="w", delete=False, suffix=".md", encoding="utf-8") as f:
5858
f.write(mermaid_text)

scripts/doc/render_graph.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ def render_mermaid():
1616
if len(sys.argv) != 3:
1717
print("Usage: render_graph.py <mermaid_text_path> <output_png_path>")
1818
sys.exit(1)
19-
19+
2020
mermaid_text_path = Path(sys.argv[1])
2121
output_png_path = Path(sys.argv[2])
22-
22+
2323
# Load the mermaid text
24-
with open(mermaid_text_path, encoding='utf-8') as f:
24+
with open(mermaid_text_path, encoding="utf-8") as f:
2525
mermaid_text = f.read()
26-
26+
2727
# Render using pyppeteer (this will create its own event loop)
2828
draw_mermaid_png(
2929
mermaid_text,

0 commit comments

Comments
 (0)