Skip to content

Commit

Permalink
linting change
Browse files Browse the repository at this point in the history
  • Loading branch information
gesinaphillips committed Feb 1, 2024
1 parent 49f9db4 commit f42c39f
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 @@ -122,9 +122,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 f42c39f

Please sign in to comment.