Dario Isola
Results
2
issues of
Dario Isola
Checklist - [ ] Title of this PR is meaningful: e.g. "Adding my_nifty_package", not "updated meta.yaml". - [ ] License file is packaged (see [here](https://github.com/conda-forge/staged-recipes/blob/5eddbd7fc9d1502169089da06c3688d9759be978/recipes/example/meta.yaml#L64-L73) for an example). - [...
The following ``` import flatdict fdoc = flatdict.FlatterDict({'a': [3, 4]}) fdoc['a:0'] = 1 ``` should set the first element of the list `a` but it raises the an error ```...