forked from orbit-oss/flask
update dev dependencies
This commit is contained in:
parent
235c52fa10
commit
165af0a090
10 changed files with 64 additions and 58 deletions
|
|
@ -265,9 +265,9 @@ class Flask(App):
|
|||
# For one, it might be created while the server is running (e.g. during
|
||||
# development). Also, Google App Engine stores static files somewhere
|
||||
if self.has_static_folder:
|
||||
assert (
|
||||
bool(static_host) == host_matching
|
||||
), "Invalid static_host/host_matching combination"
|
||||
assert bool(static_host) == host_matching, (
|
||||
"Invalid static_host/host_matching combination"
|
||||
)
|
||||
# Use a weakref to avoid creating a reference cycle between the app
|
||||
# and the view function (see #3761).
|
||||
self_ref = weakref.ref(self)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue