Skip to content

Moves Python code out of interpreter file #207

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
May 6, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change fmt-py
  • Loading branch information
fpliger committed May 5, 2022
commit ce13de1ff996b44894b12064927a6d99d345eeae
5 changes: 3 additions & 2 deletions pyscriptjs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fmt: fmt-py fmt-ts
@echo "Format completed"

.PHONY: fmt-check
fmt-check: fmt-ts-check fmt-py
fmt-check: fmt-ts-check fmt-py-check
@echo "Format check completed"

.PHONY: fmt-ts
Expand All @@ -69,7 +69,8 @@ fmt-ts-check:

.PHONY: fmt-py
fmt-py:
$(conda_run) black -l 88 .
$(conda_run) black --skip-string-normalization .
$(conda_run) isort --profile black .

.PHONY: fmt-py-check
fmt-py-check:
Expand Down