Skip to content

Commit

Permalink
fix: ignore mismatched types
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Loecker <[email protected]>
  • Loading branch information
JoshLoecker committed Dec 17, 2024
1 parent 4ba45e0 commit 0a0824e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/como/rnaseq_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ def zfpkm_plot(results, *, plot_xfloor: int = -4, subplot_titles: bool = True):
:param plot_xfloor: Lower limit for the x-axis.
:param subplot_titles: Whether to display facet titles (sample names).
"""
to_concat: list[pd.DataFrame | None] = [None] * len(results)
to_concat: list[pd.DataFrame] = [None] * len(results) # type: ignore # ignoring because None is not of type pd.DataFrame
for name, result in results.items():
stddev = result.std_dev
x = np.array(result.density.x)
Expand Down

0 comments on commit 0a0824e

Please sign in to comment.