Skip to content

Commit

Permalink
chore(lint): address ruff deprecation warnings (#118)
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Fiedler <miketheman@gmail.com>
  • Loading branch information
miketheman authored Apr 28, 2024
1 parent 31834db commit c3a45e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ $(VENV)/pyvenv.cfg: pyproject.toml
lint: $(VENV)/pyvenv.cfg
. $(VENV_BIN)/activate && \
black --check $(ALL_PY_SRCS) && \
ruff $(ALL_PY_SRCS) && \
ruff check $(ALL_PY_SRCS) && \
mypy $(PY_MODULE)

.PHONY: reformat
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ warn_unused_ignores = true
line-length = 100

[tool.ruff]
select = ["E", "F", "I", "W", "UP"]
lint.select = ["E", "F", "I", "W", "UP"]
target-version = "py37"
line-length = 100

0 comments on commit c3a45e8

Please sign in to comment.