Skip to content

Commit

Permalink
Ignore mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thalassemia committed Dec 2, 2024
1 parent f3fd041 commit 3979b89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ecoli/analysis/multigeneration/new_gene_counts.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ def plot(
)

# mRNA counts
mrna_plot = new_gene_data.hvplot.line(
mrna_plot = new_gene_data.hvplot.line( # type: ignore[attr-defined]
x="Time (min)",
y=new_gene_mRNA_ids,
ylabel="mRNA Counts",
title="New Gene mRNA Counts",
)

# Protein counts
protein_plot = new_gene_data.hvplot.line(
protein_plot = new_gene_data.hvplot.line( # type: ignore[attr-defined]
x="Time (min)",
y=new_gene_monomer_ids,
ylabel="Protein Counts",
Expand Down
2 changes: 1 addition & 1 deletion ecoli/analysis/single/mass_fraction_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def plot(
},
}
mass_fold_change = pl.DataFrame(new_columns)
plot_namespace = mass_fold_change.hvplot
plot_namespace = mass_fold_change.hvplot # type: ignore[attr-defined]
# hvplot.output(backend='matplotlib')
plotted_data = plot_namespace.line(
x="Time (min)",
Expand Down

0 comments on commit 3979b89

Please sign in to comment.