Is your feature request related to a problem? Please describe.
It is odd that Config shouldn't be update'd since it is a dict subclass. Doing so would completely bypass the schema validation, so we probably need to redefine Config.update and Config.__setitem__ probably needs to be got rid of! Or possibly there is a better base for this class that gives dict like behaviour? We could possibly make it something with dot style access, like a Dotmap.
Is your feature request related to a problem? Please describe.
It is odd that
Config
shouldn't beupdate
'd since it is adict
subclass. Doing so would completely bypass the schema validation, so we probably need to redefineConfig.update
andConfig.__setitem__
probably needs to be got rid of! Or possibly there is a better base for this class that gives dict like behaviour? We could possibly make it something with dot style access, like a Dotmap.