Skip to content

Commit 3a50ea4

Browse files
committed
precommit fix
1 parent 794d0cd commit 3a50ea4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pertpy/tools/_coda/_base_coda.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1821,7 +1821,7 @@ def plot_draw_tree( # pragma: no cover
18211821
h: float | None = None,
18221822
w: float | None = None,
18231823
dpi: int | None = 90,
1824-
) -> ete3.TreeNode | ete3.TreeStyle | None:
1824+
):
18251825
"""Plot a tree using input ete3 tree object.
18261826
18271827
Args:
@@ -1911,7 +1911,7 @@ def plot_draw_effects( # pragma: no cover
19111911
h: float | None = None,
19121912
w: float | None = None,
19131913
dpi: int | None = 90,
1914-
) -> ete3.TreeNode | ete3.TreeStyle | None:
1914+
):
19151915
"""Plot a tree with colored circles on the nodes indicating significant effects with bar plots which indicate leave-level significant effects.
19161916
19171917
Args:

pertpy/tools/_mixscape.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ def plot_barplot( # pragma: no cover
522522
legend_text_size: int = 8,
523523
show: bool | None = None,
524524
save: bool | str | None = None,
525-
) -> Axes | None:
525+
):
526526
"""Barplot to visualize perturbation scores calculated by the `mixscape` function.
527527
528528
Args:
@@ -844,7 +844,7 @@ def plot_violin( # pragma: no cover
844844
save: bool | str | None = None,
845845
ax: Axes | None = None,
846846
**kwargs,
847-
) -> Axes | None:
847+
):
848848
"""Violin plot using mixscape results. Requires `pt.tl.mixscape` to be run first.
849849
850850
Args:

0 commit comments

Comments
 (0)