update dev dependencies

This commit is contained in:
David Lord 2025-03-29 14:44:59 -07:00
parent 235c52fa10
commit 165af0a090
No known key found for this signature in database
GPG key ID: 43368A7AA8CC5926
10 changed files with 64 additions and 58 deletions

View file

@ -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)