From aac104fd6a00d5598f4d35d3a2f9aca6d85867a6 Mon Sep 17 00:00:00 2001 From: Jennifer Power Date: Wed, 13 Dec 2023 15:44:05 -0500 Subject: [PATCH] chore: updates poetry lock check command in Makefile Signed-off-by: Jennifer Power --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d2dd5d5e..0893f2a1 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ pre-commit: @poetry run pre-commit install lint: - @poetry lock --check + @poetry check --lock @poetry run isort --profile=black --lines-after-imports=2 \ --check-only $(TESTS) $(PYMODULE) @poetry run black --check $(TESTS) $(PYMODULE) --diff