Closed philippeauriach closed 1 year ago
The generate_default_docs=True settings was already supported on ChaliceWithSpec, but was not taken into account when using a blueprint.
generate_default_docs=True
ChaliceWithSpec
This PR fixes that, setting generate_default_docs=True on the main ChaliceWithSpec instance will generate docs automatically for blueprints.
It also allows other default behaviors to work with blueprints, such as:
blueprint_three = BlueprintWithSpec(__name__, tags=["tag 1"])
Any comment welcomed!
Just released to v0.6.0. 🎉
thanks !
The
generate_default_docs=True
settings was already supported onChaliceWithSpec
, but was not taken into account when using a blueprint.This PR fixes that, setting
generate_default_docs=True
on the mainChaliceWithSpec
instance will generate docs automatically for blueprints.It also allows other default behaviors to work with blueprints, such as:
blueprint_three = BlueprintWithSpec(__name__, tags=["tag 1"])
Any comment welcomed!