From 25077aa8517361d6873b68fe5ffb144177625339 Mon Sep 17 00:00:00 2001 From: Lars Esser <80355619+larsesser@users.noreply.github.com> Date: Sat, 14 Dec 2024 18:19:49 +0100 Subject: [PATCH] graphviz.py: add missing comma in IMAGE_TYPES (#1339) this prevented the usage of "vmlz" and "vrml" image type --- rustworkx/visualization/graphviz.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rustworkx/visualization/graphviz.py b/rustworkx/visualization/graphviz.py index 6d614e47d9..1fae8d99f3 100644 --- a/rustworkx/visualization/graphviz.py +++ b/rustworkx/visualization/graphviz.py @@ -64,7 +64,8 @@ "svg", "svgz", "vml", - "vmlz" "vrml", + "vmlz", + "vrml", "vtx", "wbmp", "xdor",