if all the validate and validate_update methods do is just pass the update parameter, why not just let the user do it ? this is much better : ``` validate(document) validate(document, update=True) ``` than this: ``` validate(document) validate_update(document) ```
if all the validate and validate_update methods do is just pass the update parameter, why not just let the user do it ?
this is much better :
than this: