Skip to content

Commit

Permalink
chore: Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
bow committed Oct 6, 2023
1 parent 5b96fe1 commit 2e797a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ env: ## Configure a local development setup.

.PHONY: fmt
fmt: ## Apply Black.
poetry run black -t py311 .
poetry run black -t py312 .


.PHONY: help
Expand Down Expand Up @@ -144,7 +144,7 @@ lint-types: ## Lint the type hints.

.PHONY: lint-style
lint-style: ## Lint style conventions.
poetry run flake8 --statistics crimson tests && poetry run black -t py311 --check .
poetry run flake8 --statistics crimson tests && poetry run black -t py312 --check .


.PHONY: lint-metrics
Expand Down
1 change: 0 additions & 1 deletion crimson/fastqc.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ def __init__(
attr = ""
read_size = self._max_line_size
while read_size <= max_size:

tokens = line.strip().split("\t")
# break on EOF
if not line:
Expand Down

0 comments on commit 2e797a7

Please sign in to comment.