root_path cannot be None (#2792)

Fixes #2791
This commit is contained in:
Antoine Fourmy
2019-02-12 15:00:56 +02:00
committed by Sebastian Rittau
parent 9b545a01ab
commit b3aac58db0

View File

@@ -24,7 +24,7 @@ class Blueprint(_PackageBoundObject):
json_decoder: Any = ...
import_name: str = ...
template_folder: Optional[str] = ...
root_path: Optional[str] = ...
root_path: str = ...
name: str = ...
url_prefix: Optional[str] = ...
subdomain: Optional[str] = ...