From 6760197618d5846fa2ae327e2cdd4c9e7e91c071 Mon Sep 17 00:00:00 2001 From: Vladimir Shitov <35199218+VladimirShitov@users.noreply.github.com> Date: Tue, 7 Jan 2025 15:15:52 +0100 Subject: [PATCH] Fix a typo in `pl.paga_compare`: `pos` -> `pos,` --- ehrapy/plot/_scanpy_pl_api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ehrapy/plot/_scanpy_pl_api.py b/ehrapy/plot/_scanpy_pl_api.py index 4cf278d6..81791036 100644 --- a/ehrapy/plot/_scanpy_pl_api.py +++ b/ehrapy/plot/_scanpy_pl_api.py @@ -1984,7 +1984,8 @@ def paga_compare( save=save, title_graph=title_graph, groups_graph=groups_graph, - pos=pos**paga_graph_params, + pos=pos, + **paga_graph_params, )