packages/django-dramatiq-postgres: fix default value for HTTPServerThread (#21216)

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens L.
2026-03-28 19:57:46 +00:00
committed by GitHub
parent 9a974f14c8
commit 07de63ee98
2 changed files with 5 additions and 2 deletions

5
.gitattributes vendored
View File

@@ -1,6 +1,9 @@
packages/client-* linguist-generated
packages/client-*/** linguist-generated
web/packages/lex/* linguist-vendored
web/packages/node-domexception/* linguist-vendored
web/packages/formdata-polyfill/* linguist-vendored
web/packages/sfe/vendored/* linguist-vendored
website/vendored/* linguist-vendored
website/docs/** linguist-documentation
website/integrations/** linguist-documentation
website/api/** linguist-documentation

View File

@@ -27,7 +27,7 @@ class HTTPServerThread(Thread):
"""Base class for a thread which runs an HTTP Server. Mainly used for typing
the `server` instance variable."""
server: HTTPServer | None
server: HTTPServer | None = None
class HTTPServer(BaseHTTPServer):