From a195f0f29385b5d753174e66202ac5017021ebca Mon Sep 17 00:00:00 2001 From: Jonas Brock-Hanash <1080933+jonas-bh@users.noreply.github.com> Date: Tue, 10 Feb 2026 11:05:20 +0100 Subject: [PATCH] Add support for histogram type in `Python` --- python/python.ml | 1 + 1 file changed, 1 insertion(+) diff --git a/python/python.ml b/python/python.ml index 7afe95c..a6e8fbf 100644 --- a/python/python.ml +++ b/python/python.ml @@ -44,6 +44,7 @@ let of_graph Graph.{type_; data} = | "scatter3d" -> "Scatter3d" | "bar" -> "Bar" | "pie" -> "Pie" + | "histogram" -> "Histogram" | _ -> assert false in Py.Module.get_function_with_keywords go c [||]