Skip to content

Commit ffb8f9a

Browse files
authored
fix: def var in plot_embedding correctly (#91)
1 parent 97be3de commit ffb8f9a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/fancypackage/plotting/_embedding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def plot_embedding(
4747
aspect = [aspect] * len(axes)
4848
elif len(axes) != len(aspect):
4949
logg.warning("The aspect list is shorter than the number of panels. Using `aspect='auto'` for all panels.")
50-
aspect["auto"] * len(axes)
50+
aspect = ["auto"] * len(axes)
5151

5252
for ax_id, ax in enumerate(axes):
5353
ax.collections[0].set_rasterized(True)

0 commit comments

Comments
 (0)