DOC: RadiometricIndices wrong Python example

When trying the Python example of the CookBook (https://www.orfeo-toolbox.org/CookBook/Applications/app_RadiometricIndices.html), the line :

app.SetParameterStringList("list", "Vegetation:NDVI Vegetation:RVI Vegetation:IPVI")

raises the error : itk::ERROR: ListViewParameter(0x194c680): Value V not found in the list of choices: Vegetation:NDVI, Vegetation:TNDVI, .....

It should be :

app.SetParameterStringList("list", ["Vegetation:NDVI", "Vegetation:RVI", "Vegetation:IPVI"])

I didn't find where to edit this on Gitlab