From 160f5e14ced01e19edb6ad71d53b870ffa1ad9c4 Mon Sep 17 00:00:00 2001 From: jo Date: Wed, 27 Jul 2022 14:13:55 +0200 Subject: [PATCH] chore: add combine-as isort option --- tools/python.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/python.mk b/tools/python.mk index 343fa1df0..c07b55e4a 100644 --- a/tools/python.mk +++ b/tools/python.mk @@ -37,13 +37,13 @@ install: $(VENV) .format: $(VENV) source $(VENV)/bin/activate black . - isort . --profile black + isort . --combine-as --profile black .PHONY: .format-check .format-check: $(VENV) source $(VENV)/bin/activate black . --check - isort . --profile black --check + isort . --combine-as --profile black --check .PHONY: .pylint .pylint: $(VENV)