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
Currently, reading of .pt2 files makes assumptions about the order of keys in the JSON objects, which is a main reason why it refuses to open older file versions.
The attached file (reordered.zip) was generated by loading the JSON data into Python and saving it out with sort_keys set to `True.
TODO:
Allow fields to be read in any order
Relax requirements on reading newer file versions. They should be able to ignore any new data and just read the data they expect.
The text was updated successfully, but these errors were encountered:
Instead of iterating in-order over the JSON document, look up the keys that we expect to see. This avoids relying on the ordering of the keys, which is not guaranteed to be in any particular order.
#294
Currently, reading of
.pt2
files makes assumptions about the order of keys in the JSON objects, which is a main reason why it refuses to open older file versions.The attached file (reordered.zip) was generated by loading the JSON data into Python and saving it out with
sort_keys
set to `True.TODO:
The text was updated successfully, but these errors were encountered: