We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 555c1dd commit bd05311Copy full SHA for bd05311
Makefile
@@ -21,8 +21,8 @@ lint:
21
pylint $(APP) || true
22
23
fmt:
24
- isort -rc --atomic
25
- black .
+ isort --apply --atomic
+ black . -l 120
26
27
check-fmt:
28
isort -rc --check
Pipfile
@@ -27,3 +27,5 @@ python_version = "3.8"
[scripts]
dev = "uvicorn app.main:APP --reload"
29
start = "uvicorn app.main:APP"
30
+fmt = "black . -l 120"
31
+sort = "isort --apply --atomic"
0 commit comments