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, we're using INI files in order to persist configuration parameters in a file, which is quite verbose when serialising and deserialising. If we switched to using JSON, then we would be able to directly save and load a single python configuration dictionary by using json.dumps(conf_obj) and json.loads(file_content).
The text was updated successfully, but these errors were encountered:
INI files are perfectly fine in the short term, so there's no real gain in switching to JSON in preference to writing challenges. It's certainly not vital for the competition. I'm happy to look at this as a nice to have feature if you assign it to me.
Currently, we're using INI files in order to persist configuration parameters in a file, which is quite verbose when serialising and deserialising. If we switched to using JSON, then we would be able to directly save and load a single python configuration dictionary by using
json.dumps(conf_obj)
andjson.loads(file_content)
.The text was updated successfully, but these errors were encountered: