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
Hello, I noticed an unexpected output (and invalid TOML syntax) for dumps, when trying to append a dict object to an existing multiline array. Maybe this should be considered a bug?
Please find bellow the steps to reproduce the error:
Hello, I noticed an unexpected output (and invalid TOML syntax) for
dumps
, when trying to append a dict object to an existing multiline array. Maybe this should be considered a bug?Please find bellow the steps to reproduce the error:
Here we can see that the value dumped for
x
does not conform with the TOML syntax. I would expect the output ofdumps
to be similar to the following:Please notice that even when using explicitly
inline_table
, there still will be errors:Here the extra initial
,
will cause problems when parsing the produced string.I am using Python 3.8.0 and tomlkit 0.7.2 on Ubuntu 18.04.5 LTS.
The text was updated successfully, but these errors were encountered: