Skip to content

Commit 5e1e8ba

Browse files
committed
Fix black giving no indication of unsuccessful checks
Unfortunately, there isn't an easy way to only display the unsuccessful files without extra noise.
1 parent f418a42 commit 5e1e8ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def lint(c):
147147
results = [
148148
c.run("flake8 .", warn=True),
149149
c.run("isort -rc -c -q .", warn=True),
150-
c.run("black --check -q .", warn=True),
150+
c.run("black --check .", warn=True),
151151
]
152152
if any(result.failed for result in results):
153153
sys.exit(1)

0 commit comments

Comments
 (0)