fix: missing list type for request body

This commit is contained in:
debugtalk
2020-06-19 18:28:48 +08:00
parent 3e8bd4b6f0
commit 429d36b333
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -10,6 +10,7 @@
- change: do not raise error if failed to get client/server address info - change: do not raise error if failed to get client/server address info
- fix: path handling error when har2case har file and cwd != ProjectRootDir - fix: path handling error when har2case har file and cwd != ProjectRootDir
- fix: missing list type for request body
## 3.0.13 (2020-06-17) ## 3.0.13 (2020-06-17)
+1 -1
View File
@@ -123,7 +123,7 @@ class RequestData(BaseModel):
url: Url url: Url
headers: Headers = {} headers: Headers = {}
cookies: Cookies = {} cookies: Cookies = {}
body: Union[Text, bytes, Dict, None] = {} body: Union[Text, bytes, Dict, List, None] = {}
class ResponseData(BaseModel): class ResponseData(BaseModel):