Skip to content

Commit

Permalink
fix: Typo in missing STUDY section error msg (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
sellth authored Jan 15, 2024
1 parent 2892ffb commit 57fb63d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion altamisa/isatab/parse_investigation.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def _read_studies(self) -> Iterator[models.StudyInfo]:
line = self._read_next_line()
if not line or not line[0] == investigation_headers.STUDY: # pragma: no cover
tpl = "Expected {} but got {}"
msg = tpl.format(investigation_headers.INVESTIGATION, line)
msg = tpl.format(investigation_headers.STUDY, line)
raise ParseIsatabException(msg)
# Read the other lines in this section.
section, comment_keys = self._read_single_column_section(
Expand Down

0 comments on commit 57fb63d

Please sign in to comment.