Switch to explicit Werkzeug imports

This commit is contained in:
Armin Ronacher 2011-07-15 18:03:48 +02:00
parent 6ca321c979
commit 2866ccda1f
7 changed files with 17 additions and 10 deletions

View file

@ -9,8 +9,8 @@
:license: BSD, see LICENSE for more details.
"""
from werkzeug import Request as RequestBase, Response as ResponseBase, \
cached_property
from werkzeug.wrappers import Request as RequestBase, Response as ResponseBase
from werkzeug.utils import cached_property
from .helpers import json, _assert_have_json
from .globals import _request_ctx_stack