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 7bb2816 commit 105add6Copy full SHA for 105add6
noxfile.py
@@ -56,7 +56,7 @@ def format(session):
56
session.run("python", "utils/run-unasync.py")
57
session.run("isort", "--profile=black", *SOURCE_FILES)
58
session.run("flynt", *SOURCE_FILES)
59
- session.run("python", "utils/run-black.py", *SOURCE_FILES)
+ session.run("black", *SOURCE_FILES)
60
session.run("python", "utils/license-headers.py", "fix", *SOURCE_FILES)
61
62
lint(session)
@@ -67,7 +67,7 @@ def lint(session):
67
session.install("flake8", "black", "mypy", "isort", "types-requests")
68
69
session.run("isort", "--check", "--profile=black", *SOURCE_FILES)
70
- session.run("python", "utils/run-black.py", "--check", *SOURCE_FILES)
+ session.run("black", "--check", *SOURCE_FILES)
71
session.run("flake8", *SOURCE_FILES)
72
session.run("python", "utils/license-headers.py", "check", *SOURCE_FILES)
73
utils/run-black.py
0 commit comments