Skip to content

Commit

Permalink
replace black with ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
MarquessV committed May 31, 2024
1 parent 3f43ad6 commit cadcd18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ check-all: check-format check-types check-style

.PHONY: check-format
check-format:
black --check --diff pyquil
ruff format --check --diff pyquil

.PHONY: check-types
check-types:
Expand Down Expand Up @@ -55,7 +55,7 @@ docker: Dockerfile

.PHONY: format
format:
black $(if $(format_file), $(format_file), pyquil)
ruff format $(if $(format_file), $(format_file), pyquil)

.PHONY: info
info:
Expand Down

0 comments on commit cadcd18

Please sign in to comment.