Skip to content

Commit

Permalink
Drop run-black.py
Browse files Browse the repository at this point in the history
Mirroring the change in elastic/elasticsearch-py#2289
  • Loading branch information
JoshMock committed Sep 11, 2023
1 parent 6486821 commit ba6f87e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 90 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def format(session):
session.run("python", "utils/run-unasync.py")
session.run("isort", "--profile=black", *SOURCE_FILES)
session.run("flynt", *SOURCE_FILES)
session.run("python", "utils/run-black.py", *SOURCE_FILES)
session.run("black", *SOURCE_FILES)
session.run("python", "utils/license-headers.py", "fix", *SOURCE_FILES)

lint(session)
Expand All @@ -67,7 +67,7 @@ def lint(session):
session.install("flake8", "black", "mypy", "isort", "types-requests")

session.run("isort", "--check", "--profile=black", *SOURCE_FILES)
session.run("python", "utils/run-black.py", "--check", *SOURCE_FILES)
session.run("black", "--check", *SOURCE_FILES)
session.run("flake8", *SOURCE_FILES)
session.run("python", "utils/license-headers.py", "check", *SOURCE_FILES)

Expand Down
88 changes: 0 additions & 88 deletions utils/run-black.py

This file was deleted.

0 comments on commit ba6f87e

Please sign in to comment.