From 5faf51c49bdcca7fa0329e4d2ab1f393463685c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sat, 7 Jan 2023 15:03:37 +0800 Subject: [PATCH] Removed the realm from the example in the documentation of the init_app method of the DigestAuth class. --- src/flask_digest_auth/auth.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/flask_digest_auth/auth.py b/src/flask_digest_auth/auth.py index 417c5c0..091e897 100644 --- a/src/flask_digest_auth/auth.py +++ b/src/flask_digest_auth/auth.py @@ -336,7 +336,6 @@ class DigestAuth: app: flask = Flask(__name__) auth: DigestAuth = DigestAuth() - auth.realm = "My Admin" auth.init_app(app) :param app: The Flask application.