From 54f585eaba50d13e44d02d317d044d8664fdf209 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Tue, 3 Oct 2023 17:07:38 +0000 Subject: [PATCH] chore(docs): adjust some docstrings --- src/finch/types/provider.py | 5 ++--- src/finch/types/request_forwarding_forward_response.py | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/finch/types/provider.py b/src/finch/types/provider.py index 2da2fbcb..880077a0 100644 --- a/src/finch/types/provider.py +++ b/src/finch/types/provider.py @@ -22,9 +22,8 @@ class Provider(BaseModel): manual: Optional[bool] = None """ - [DEPRECATED] Whether the Finch integration with this provider uses the Assisted - Connect Flow by default. This field is now deprecated. Please check for a `type` - of `assisted` in the `authentication_methods` field instead. + Whether the Finch integration with this provider uses the Assisted Connect Flow + by default. """ mfa_required: Optional[bool] = None diff --git a/src/finch/types/request_forwarding_forward_response.py b/src/finch/types/request_forwarding_forward_response.py index 267a4cf9..508c8e89 100644 --- a/src/finch/types/request_forwarding_forward_response.py +++ b/src/finch/types/request_forwarding_forward_response.py @@ -26,7 +26,7 @@ class Request(BaseModel): method: str """The HTTP method that was specified for the forwarded request. - Valid values include: `GET` , `POST` , `PUT` , `DELETE` , and `PATCH`. + Valid values include: `GET`, `POST`, `PUT` , `DELETE`, and `PATCH`. """ params: Optional[object]