From cf43c986cfb751d668b0a90539c07585df580844 Mon Sep 17 00:00:00 2001 From: Carsten Schnober Date: Mon, 30 Oct 2023 10:55:34 +0100 Subject: [PATCH] Fix command for installing pre-commit hooks. `make pre-commit-install` does not exist any longer, `make install-dev` seems to be the right choice now. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2c935340..f608ad80 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,7 +9,7 @@ To install dependencies and prepare [`pre-commit`](https://pre-commit.com/) hook ```bash make install -make pre-commit-install +make install-dev ``` To activate your `virtualenv` run `poetry shell`.