committed by
GitHub
5 changed files with 9 additions and 11 deletions
@ -1,3 +1,3 @@ |
|||||
METHODS_WITH_BODY = set(("GET", "HEAD", "POST", "PUT", "DELETE", "PATCH")) |
METHODS_WITH_BODY = {"GET", "HEAD", "POST", "PUT", "DELETE", "PATCH"} |
||||
STATUS_CODES_WITH_NO_BODY = set((100, 101, 102, 103, 204, 304)) |
STATUS_CODES_WITH_NO_BODY = {100, 101, 102, 103, 204, 304} |
||||
REF_PREFIX = "#/components/schemas/" |
REF_PREFIX = "#/components/schemas/" |
||||
|
Loading…
Reference in new issue