From dadd92889edf9dcc040fc9a049a98e2c40011dd5 Mon Sep 17 00:00:00 2001 From: Sam Arbid <36583694+Samk13@users.noreply.github.com> Date: Sun, 16 Jun 2024 22:24:50 +0200 Subject: [PATCH] fix: DataValidationError of pipenv (#664) --- docs/develop/howtos/custom_code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/develop/howtos/custom_code.md b/docs/develop/howtos/custom_code.md index 5c333eff..9cdd99ba 100644 --- a/docs/develop/howtos/custom_code.md +++ b/docs/develop/howtos/custom_code.md @@ -24,7 +24,7 @@ To generate the site folder, you will need to select option `1 - yes` (this is a ```python hl_lines="3" [packages] ... -my-site = {editable="True", path="./site"} +my-site = {editable=true, path="./site"} ``` This means that the site folder will be installed as a package with the name `my-site`, and it is editable. This package now works as any other package installed in your instance (`invenio-app-rdm`, `invenio-communities`, etc.), allowing you to customize your instance and create new views and features without adding a separate package manually.