Skip to content

Commit

Permalink
feat: Add list processing for Performer fields
Browse files Browse the repository at this point in the history
  • Loading branch information
sellth committed Feb 1, 2024
1 parent 58aa5d0 commit e007d64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion altamisa/isatab/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ class Process:
#: Process date
date: Optional[Union[datetime.date, Literal[""]]]
#: Performer of process
performer: Optional[str]
performer: Optional[Tuple[str]]
#: Tuple of parameters values
parameter_values: Tuple[ParameterValue, ...]
#: Tuple of process comments
Expand Down
2 changes: 1 addition & 1 deletion altamisa/isatab/parse_assay_study.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ def build(self, line: List[str]) -> models.Process:
else:
date = None
if self.performer_header:
performer = line[self.performer_header.col_no]
performer = tuple(self._token_with_escape(line[self.performer_header.col_no]))
else:
performer = None
comments = tuple(
Expand Down

0 comments on commit e007d64

Please sign in to comment.