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
Allow specification of default values to the Schema.from_dict function (#42)
* Allow specification of default values to the Schema.from_dict function
When using the from_dict method, you might be in a situation where you
want every Schema created to have a certain property, like "inclusion":
"automatic". This allows you to do that like:
```python
Schema.from_dict(dict_, inclusion="automatic")
```
* Add test that confirms overriding from_dict options happens
0 commit comments