From 49898c62f27335cf8fe33f7081dad26ab02a38ec Mon Sep 17 00:00:00 2001 From: J van Zundert Date: Mon, 3 Oct 2022 09:13:03 +0200 Subject: [PATCH] chore(python): Update formatting targets Makefile (#5061) --- py-polars/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py-polars/Makefile b/py-polars/Makefile index 82d440e3e72a..c8e125a1cab4 100644 --- a/py-polars/Makefile +++ b/py-polars/Makefile @@ -25,11 +25,11 @@ fmt: venv ## Run autoformatting and linting $(VENV_BIN)/isort . $(VENV_BIN)/black . $(VENV_BIN)/blackdoc . - $(VENV_BIN)/pyupgrade --py37-plus `find polars/ tests/ -name "*.py" -type f` + $(VENV_BIN)/pyupgrade --py37-plus `find polars docs tests -name "*.py" -type f` cargo fmt --all -dprint fmt -$(VENV_BIN)/mypy - -$(VENV_BIN)/flake8 polars tests docs + -$(VENV_BIN)/flake8 .PHONY: clippy clippy: ## Run clippy