Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
ssjunnebo committed Dec 11, 2024
1 parent 847ad87 commit 4570d05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taca/illumina/Runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,10 @@ def _get_samplesheet(self):
return ssname
else:
logger.warning(
f"Not able to find samplesheet {self.flowcell_id}.csv in {self.CONFIG["samplesheets_dir"]}"
f"Not able to find samplesheet {self.flowcell_id}.csv in {self.CONFIG['samplesheets_dir']}"
)
raise RuntimeError(
f"Not able to find samplesheet {self.flowcell_id}.csv in {self.CONFIG["samplesheets_dir"]}"
f"Not able to find samplesheet {self.flowcell_id}.csv in {self.CONFIG['samplesheets_dir']}"
)

def _is_demultiplexing_done(self):
Expand Down

0 comments on commit 4570d05

Please sign in to comment.