Skip to content

Commit 35b71ae

Browse files
authored
build(deps): Add flake8-comprehensions (#808)
2 parents d911027 + af9a51e commit 35b71ae

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

CHANGES

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force
2222
### Development
2323

2424
- Add [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) (#807)
25+
- Add [flake8-comprehensions](https://github.com/adamchainz/flake8-comprehensions) (#808)
2526

2627
## tmuxp 1.13.1 (2022-08-21)
2728

poetry.lock

+17-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+9-1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ isort = "*"
8686
### Lint ###
8787
flake8 = "*"
8888
flake8-bugbear = "^22.8.23"
89+
flake8-comprehensions = "*"
8990
mypy = "*"
9091
types-colorama = "^0.4.15"
9192
types-docutils = "^0.19.0"
@@ -110,7 +111,14 @@ docs = [
110111
test = ["pytest", "pytest-rerunfailures", "pytest-mock", "pytest-watcher"]
111112
coverage = ["codecov", "coverage", "pytest-cov"]
112113
format = ["black", "isort"]
113-
lint = ["flake8", "flake8-bugbear", "mypy", "types-colorama", "types-docutils"]
114+
lint = [
115+
"flake8",
116+
"flake8-bugbear",
117+
"flake8-comprehsions",
118+
"mypy",
119+
"types-colorama",
120+
"types-docutils",
121+
]
114122

115123
[build-system]
116124
requires = ["poetry_core>=1.0.0"]

0 commit comments

Comments
 (0)