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 13f896d commit 244518bCopy full SHA for 244518b
noxfile.py
@@ -61,7 +61,7 @@ def format(session):
61
session.run("python", "utils/run-unasync.py")
62
session.run("isort", "--profile=black", *SOURCE_FILES)
63
session.run("flynt", *SOURCE_FILES)
64
- session.run("python", "utils/run-black.py", *SOURCE_FILES)
+ session.run("black", *SOURCE_FILES)
65
session.run("python", "utils/license-headers.py", "fix", *SOURCE_FILES)
66
67
lint(session)
@@ -72,7 +72,7 @@ def lint(session):
72
session.install("flake8", "black", "mypy", "isort", "types-requests")
73
74
session.run("isort", "--check", "--profile=black", *SOURCE_FILES)
75
- session.run("python", "utils/run-black.py", "--check", *SOURCE_FILES)
+ session.run("black", "--check", *SOURCE_FILES)
76
session.run("flake8", *SOURCE_FILES)
77
session.run("python", "utils/license-headers.py", "check", *SOURCE_FILES)
78
utils/run-black.py
0 commit comments