You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And naively coercing to a str leaves it looking like this,
✕ scratch/CGIAR_et0_annual_epsg_3857.tif.yml: 1 validation errors
(, ', d, a, t, a, _, m, o, d, e, l, ', ,, , ', b, a, n, d, s, ', ,, , 0, ,, , ', d, e, s, c, r, i, p, t, i, o, n, ', )
Input should be a valid string. [input_value=99, input_type=int]
Things are working okay for nested keys where all the parents are dicts, not lists. For example,
✕ scratch/CGIAR_et0_annual_epsg_3857.tif.yml: 1 validation errors
license, title
Input should be a valid string. [input_value=0, input_type=int]
The text was updated successfully, but these errors were encountered:
A validation message that references a nested key is malformed. Here a have an incorrect type for the
description
:Actually the problem is that the nesting here includes a
list
, so the message formatting raises an exception:And naively coercing to a
str
leaves it looking like this,Things are working okay for nested keys where all the parents are dicts, not lists. For example,
The text was updated successfully, but these errors were encountered: