Skip to content

Commit 5b0f3b4

Browse files
authored
Merge pull request #71 from c01o/patch-1
Fix typo
2 parents 7e94e16 + 6a9b4d6 commit 5b0f3b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/httpserver_authentication_handlers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import socketpool
66
import wifi
77

8-
from adafruit_httpserver import Server, Request, Response, UNATUHORIZED_401
8+
from adafruit_httpserver import Server, Request, Response, UNAUTHORIZED_401
99
from adafruit_httpserver.authentication import (
1010
AuthenticationError,
1111
Basic,
@@ -67,7 +67,7 @@ def require_authentication_or_manually_handle(request: Request):
6767
request,
6868
body="Not authenticated - Manually handled",
6969
content_type="text/plain",
70-
status=UNATUHORIZED_401,
70+
status=UNAUTHORIZED_401,
7171
)
7272

7373

0 commit comments

Comments
 (0)