We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c24466b commit a545ca7Copy full SHA for a545ca7
1 file changed
adafruit_httpserver/status.py
@@ -39,6 +39,9 @@ class CommonHTTPStatus(HTTPStatus): # pylint: disable=too-few-public-methods
39
BAD_REQUEST_400 = HTTPStatus(400, "Bad Request")
40
"""400 Bad Request"""
41
42
+ FORBIDDEN_403 = HTTPStatus(403, "Forbidden")
43
+ """403 Forbidden"""
44
+
45
NOT_FOUND_404 = HTTPStatus(404, "Not Found")
46
"""404 Not Found"""
47
0 commit comments