Skip to content

Commit

Permalink
had to update black
Browse files Browse the repository at this point in the history
  • Loading branch information
gesinaphillips committed Jul 26, 2024
1 parent 0f35bc7 commit 2fcd65c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ingest_validation_tests/fastq_validator_logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ def _validate_fastq_line_4(self, line: str) -> List[str]:
def validate_fastq_record(self, line: str, line_number: int) -> List[str]:
line_index = line_number % 4 + 1

validator_method: Callable[
[FASTQValidatorLogic, str], List[str]
] = self._VALIDATE_FASTQ_LINE_METHODS[line_index]
validator_method: Callable[[FASTQValidatorLogic, str], List[str]] = (
self._VALIDATE_FASTQ_LINE_METHODS[line_index]
)

assert validator_method, f"No validator method defined for record index {line_index}"

Expand Down

0 comments on commit 2fcd65c

Please sign in to comment.