From 2b0a8cecdbc2161f8f2048483285e3e5a38ea8a1 Mon Sep 17 00:00:00 2001 From: "Charles P. Cross" Date: Thu, 18 Dec 2025 17:47:03 -0500 Subject: [PATCH] fix(lint): mark unused subgraph parameter in renderGraph The subgraph parameter was passed to renderGraph but not used in the function body, causing an unparam lint error. Replace with _ to indicate intentional non-use. --- cmd/bd/graph.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bd/graph.go b/cmd/bd/graph.go index be60a1a6..c169176e 100644 --- a/cmd/bd/graph.go +++ b/cmd/bd/graph.go @@ -277,7 +277,7 @@ func computeLayout(subgraph *TemplateSubgraph) *GraphLayout { } // renderGraph renders the ASCII visualization -func renderGraph(layout *GraphLayout, subgraph *TemplateSubgraph) { +func renderGraph(layout *GraphLayout, _ *TemplateSubgraph) { if len(layout.Nodes) == 0 { fmt.Println("Empty graph") return