Skip to content

Commit 92f41dd

Browse files
authored
use flake8-use-fstring (#97)
1 parent 0dfcca2 commit 92f41dd

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ repos:
6767
- flake8-comprehensions
6868
- flake8-docstrings
6969
- flake8-print
70+
- flake8-use-fstring
7071
- nitpick
7172
- repo: https://github.com/igorshubovych/markdownlint-cli
7273
rev: v0.27.1

.vscode/cspell.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,8 @@
5252
],
5353
"language": "en",
5454
"maxNumberOfProblems": 100,
55-
"version": "0.1"
55+
"version": "0.1",
56+
"words": [
57+
"fstring"
58+
]
5659
}

poetry.lock

Lines changed: 20 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ flake8-bugbear = "^21.4.3" # flake8 plugin
1616
flake8-comprehensions = "^3.5.0" # flake8 plugin
1717
flake8-docstrings = "^1.6.0" # flake8 plugin
1818
flake8-print = "^4.0.0" # flake8 plugin
19+
flake8-use-fstring = "^1.1" # flake8 plugin
1920
isort = "^5.9.2"
2021
mock = "^4.0.3"
2122
nitpick = "^0.27.0" # flake8 plugin

0 commit comments

Comments
 (0)