Arjun K

Results 2 comments of Arjun K

Thanks for the help @sloria @lafrech and @deckar01. I was able to replicate the expected behavior by creating a subclass from the original schema and specifying the additional fields in...

Another workaround I tried was using `unknown=INCLUDE` with `only`. Referring back to my code, if I do the following ``` data_out = MySchema(unknown=INCLUDE, only={'a', 'b', 'c', 'e'}).dump(obj) ``` it will...