Skip to content

Commit

Permalink
Black linting
Browse files Browse the repository at this point in the history
  • Loading branch information
sunset666 committed Apr 15, 2024
1 parent fadcf18 commit 30e2508
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ingest_validation_tests/fastq_validator_logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,9 @@ def validate_fastq_file(self, fastq_file: Path) -> None:
except EOFError:
self.errors.append(self._format_error(f"EOF in FASTQ data file {fastq_file}."))
except Exception as e:
self.errors.append(self._format_error(f"Unexpected error: {e} on data file {fastq_file}."))
self.errors.append(
self._format_error(f"Unexpected error: {e} on data file {fastq_file}.")
)
self._file_record_counts[str(fastq_file)] = records_read

def validate_fastq_files_in_path(self, paths: List[Path], threads: int) -> None:
Expand Down

0 comments on commit 30e2508

Please sign in to comment.