Skip to content

Commit e8a8d37

Browse files
Update stubs/httpretty/httpretty/__init__.pyi\
Co-authored-by: Semyon Moroz <donbarbos@proton.me>
1 parent 2eb305f commit e8a8d37

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

stubs/httpretty/httpretty/__init__.pyi

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ disable = httpretty.disable
2525
is_enabled = httpretty.is_enabled
2626
reset = httpretty.reset
2727
Response = httpretty.Response
28-
GET: Literal["GET"]
29-
PUT: Literal["PUT"]
30-
POST: Literal["POST"]
31-
DELETE: Literal["DELETE"]
32-
HEAD: Literal["HEAD"]
33-
PATCH: Literal["PATCH"]
34-
OPTIONS: Literal["OPTIONS"]
35-
CONNECT: Literal["CONNECT"]
28+
GET: Final = "GET"
29+
PUT: Final = "PUT"
30+
POST: Final = "POST"
31+
DELETE: Final = "DELETE"
32+
HEAD: Final = "HEAD"
33+
PATCH: Final = "PATCH"
34+
OPTIONS: Final = "OPTIONS"
35+
CONNECT: Final = "CONNECT"
3636

3737
def last_request() -> HTTPrettyRequest | HTTPrettyRequestEmpty: ...
3838
def latest_requests() -> list[HTTPrettyRequest]: ...

0 commit comments

Comments
 (0)