Skip to content

Commit 9eb48f0

Browse files
committed
chore(docs): adjust some docstrings (#119)
1 parent 5746881 commit 9eb48f0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/finch/resources/request_forwarding.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ def forward(
3333
The Forward API allows you to make direct requests to an employment system.
3434
3535
Args:
36-
method: The HTTP method for the forwarded request. Valid values include: `GET` , `POST`
37-
, `PUT` , `DELETE` , and `PATCH`.
36+
method: The HTTP method for the forwarded request. Valid values include: `GET`, `POST`,
37+
`PUT`, `DELETE`, and `PATCH`.
3838
3939
route: The URL route path for the forwarded request. This value must begin with a
4040
forward-slash ( / ) and may only contain alphanumeric characters, hyphens, and
@@ -97,8 +97,8 @@ async def forward(
9797
The Forward API allows you to make direct requests to an employment system.
9898
9999
Args:
100-
method: The HTTP method for the forwarded request. Valid values include: `GET` , `POST`
101-
, `PUT` , `DELETE` , and `PATCH`.
100+
method: The HTTP method for the forwarded request. Valid values include: `GET`, `POST`,
101+
`PUT`, `DELETE`, and `PATCH`.
102102
103103
route: The URL route path for the forwarded request. This value must begin with a
104104
forward-slash ( / ) and may only contain alphanumeric characters, hyphens, and

src/finch/types/request_forwarding_forward_params.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class RequestForwardingForwardParams(TypedDict, total=False):
1212
method: Required[str]
1313
"""The HTTP method for the forwarded request.
1414
15-
Valid values include: `GET` , `POST` , `PUT` , `DELETE` , and `PATCH`.
15+
Valid values include: `GET`, `POST`, `PUT`, `DELETE`, and `PATCH`.
1616
"""
1717

1818
route: Required[str]

0 commit comments

Comments
 (0)