Skip to content

Commit

Permalink
fix: Typo in missing STUDY section error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
sellth committed Nov 1, 2023
1 parent 1009797 commit 6558611
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 @@ -361,7 +361,7 @@ def _read_studies(self) -> Iterator[models.StudyInfo]:
line = self._read_next_line()
if 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 6558611

Please sign in to comment.