Skip to content

Commit

Permalink
Ran black on new_service.py
Browse files Browse the repository at this point in the history
  • Loading branch information
victor5lm committed Oct 29, 2024
1 parent b5317ad commit 4d4da2e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bu_isciii/new_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ def __init__(
def check_md5(self):
# Path to the .md5 file
project_name = self.service_samples[0]["project_name"]
md5_file_path = f'{self.conf["fastq_repo"]}/{project_name}/md5sum_{project_name}.md5'
md5_file_path = (
f'{self.conf["fastq_repo"]}/{project_name}/md5sum_{project_name}.md5'
)
if not os.path.exists(md5_file_path):
stderr.print(f"[red]ERROR: .md5 file not found at {md5_file_path}")
sys.exit(1)
Expand Down

0 comments on commit 4d4da2e

Please sign in to comment.