Skip to content

Commit 1ef56e4

Browse files
authored
Merge pull request #3088 from kairi003/add-params-to-fasthttp-post-kwargs
Fix missing optional argument definitions in PostKwargs
2 parents 33fee4e + 9fe35aa commit 1ef56e4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: locust/contrib/fasthttp.py

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ class PostKwargs(TypedDict, total=False):
4949
auth: tuple[str | bytes, str | bytes] | None
5050
allow_redirects: bool
5151
context: dict
52+
params: dict | None
53+
files: dict | None
5254

5355
class PutKwargs(PostKwargs, total=False):
5456
json: Any

0 commit comments

Comments
 (0)