Skip to content

Commit a545ca7

Browse files
committed
Added missing FORBIDDEN_403
1 parent c24466b commit a545ca7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

adafruit_httpserver/status.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ class CommonHTTPStatus(HTTPStatus): # pylint: disable=too-few-public-methods
3939
BAD_REQUEST_400 = HTTPStatus(400, "Bad Request")
4040
"""400 Bad Request"""
4141

42+
FORBIDDEN_403 = HTTPStatus(403, "Forbidden")
43+
"""403 Forbidden"""
44+
4245
NOT_FOUND_404 = HTTPStatus(404, "Not Found")
4346
"""404 Not Found"""
4447

0 commit comments

Comments
 (0)