From 039700c737d3d14ffb868cb9a215133f2dedfc4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janek=20Nouvertn=C3=A9?= Date: Sat, 30 Mar 2024 17:21:13 +0100 Subject: [PATCH] feat: Add "TRACE" to HttpMethod enum (#3294) Add "TRACE" to HttpMethod enum --- litestar/enums.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litestar/enums.py b/litestar/enums.py index a660228c9d..a8d9c2daf9 100644 --- a/litestar/enums.py +++ b/litestar/enums.py @@ -21,6 +21,7 @@ class HttpMethod(str, Enum): PATCH = "PATCH" POST = "POST" PUT = "PUT" + TRACE = "TRACE" class MediaType(str, Enum):