Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
sellth committed Dec 5, 2023
1 parent 89136d5 commit 8f51c55
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions altamisa/isatab/modify_investigation.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@

from altamisa.isatab import InvestigationReader

__author__ = (
"Thomas Sell <[email protected]>"
)
__author__ = "Thomas Sell <[email protected]>"


class InvestigationForge:
"""
Expand Down Expand Up @@ -77,7 +76,9 @@ def add_assay(self, input_path: Union[str, Path]):
assays = self.investigation.studies[0].assays
assays += new_assays

updated_study = attr.evolve(self.investigation.studies[0], protocols=joined_protocols, assays=assays)
updated_study = attr.evolve(
self.investigation.studies[0], protocols=joined_protocols, assays=assays
)
self.investigation = attr.evolve(self.investigation, studies=(updated_study,))

def add_protocol(self):
Expand Down

0 comments on commit 8f51c55

Please sign in to comment.