Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ lint.ignore = [
"D101", # Ignore missing docstring in public classes
"F401",
# FIXME: those are ignored for now, should be fixed eventually
"ERA001", # Found commented-out code
"T201", # `print` found"
"SIM105", # Use `contextlib.suppress`
"S110", # `try`-`except`-`pass` detected, consider logging the exception
Expand Down
1 change: 0 additions & 1 deletion src/petab_gui/controllers/simulation_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ def simulate(self):
model=petab_problem.model,
)

# import petabsimualtor
import basico
from basico.petab import PetabSimulator

Expand Down
1 change: 0 additions & 1 deletion src/petab_gui/views/simple_plot_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,6 @@ def plot_residuals(self):
simulations_df,
ax=axes_fit,
)
# fig_fit.tight_layout()
create_plot_tab(fig_fit, self, "Goodness of Fit")

def disable_plotting(self, disable: bool):
Expand Down
Loading