Skip to content

Commit 1782dd2

Browse files
PEP8 Standard ERA001 (#253)
* Removed ERA001 from pyproject lint.ignore. * Removed ERA001 occurences
1 parent b90e86a commit 1782dd2

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ lint.ignore = [
8888
"D101", # Ignore missing docstring in public classes
8989
"F401",
9090
# FIXME: those are ignored for now, should be fixed eventually
91-
"ERA001", # Found commented-out code
9291
"T201", # `print` found"
9392
"SIM105", # Use `contextlib.suppress`
9493
"S110", # `try`-`except`-`pass` detected, consider logging the exception

src/petab_gui/controllers/simulation_controller.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ def simulate(self):
103103
model=petab_problem.model,
104104
)
105105

106-
# import petabsimualtor
107106
import basico
108107
from basico.petab import PetabSimulator
109108

src/petab_gui/views/simple_plot_view.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,6 @@ def plot_residuals(self):
421421
simulations_df,
422422
ax=axes_fit,
423423
)
424-
# fig_fit.tight_layout()
425424
create_plot_tab(fig_fit, self, "Goodness of Fit")
426425

427426
def disable_plotting(self, disable: bool):

0 commit comments

Comments
 (0)