Skip to content

Commit 761dce7

Browse files
authored
Merge pull request boltronics#5 from boltronics/flake_fixes
Flake8 fixes
2 parents 7ef55d0 + d92cdb8 commit 761dce7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

{{cookiecutter.package_name}}/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ format:
9494
.PHONY: check-format
9595
check-format:
9696
@hatch run style:run-black-check
97+
@hatch run style:run-flake8
9798

9899

99100
# help: sort-imports - apply import sort ordering

{{cookiecutter.package_name}}/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ extra-dependencies = [
135135
]
136136

137137
[tool.hatch.envs.style.scripts]
138-
run-flake8 = "flake8 --ignore=E203,W503 src tests"
138+
run-flake8 = "flake8 src tests"
139139
run-isort = "isort src tests --profile black"
140140
run-isort-check = "run-isort --check-only"
141141
run-black = "black examples src tests"

0 commit comments

Comments
 (0)