Skip to content

Commit f91d216

Browse files
committed
ignore
1 parent 752292b commit f91d216

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/petab_gui/controllers/table_controllers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,8 @@ def _rank_dose_candidates(self, df) -> list[str]:
765765
"""Lightweight ranking of dose-like columns (regex + numeric + cardinality)."""
766766
patt = re.compile(r"\b(dose|conc|concentration|drug|compound|stim|input|u\d+)\b", re.IGNORECASE)
767767
scores = {}
768-
for col in df.columns:
768+
# FIXME: https://github.com/PaulJonasJost/PEtab_GUI/issues/159
769+
for col in df.columns: # noqa: B007
769770
s = 0.0
770771
if patt.search(col or ""): s += 2.0
771772
try:

0 commit comments

Comments
 (0)