Skip to content

Commit

Permalink
chore: replace black by ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
corenting committed Dec 16, 2023
1 parent 5ef24b5 commit b64a8be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 75 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ PYTHON=poetry run

.PHONY: format
format:
$(PYTHON) black immutabledict tests
$(PYTHON) ruff format immutabledict tests
$(PYTHON) ruff --fix immutabledict tests

.PHONY: style
style:
$(PYTHON) black --check immutabledict tests
$(PYTHON) ruff format --check immutabledict tests
$(PYTHON) ruff immutabledict tests
$(PYTHON) mypy -- immutabledict tests

Expand Down
73 changes: 1 addition & 72 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ include = [
python = "^3.8"

[tool.poetry.dev-dependencies]
black = "*"
coverage = "*"
mypy = "*"
pytest = "*"
Expand Down

0 comments on commit b64a8be

Please sign in to comment.