From ba62ad61efdfdd38884d01819567133014d16e4a Mon Sep 17 00:00:00 2001 From: devdanzin <74280297+devdanzin@users.noreply.github.com> Date: Sun, 27 Aug 2023 21:01:58 -0300 Subject: [PATCH] Restore displaying graph markers. --- src/wily/commands/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wily/commands/graph.py b/src/wily/commands/graph.py index 7e417574..43bbdbd9 100644 --- a/src/wily/commands/graph.py +++ b/src/wily/commands/graph.py @@ -144,7 +144,7 @@ def graph( ids=state.index[state.default_archiver].revision_keys, text=labels, marker={ - "size": 0 if z_axis is None else z, + "size": 0 if not z_axis else z, "color": list(range(len(y))), # "colorscale": "Viridis", },