Skip to content

Commit a83b14f

Browse files
chore: stainless release (#458)
1 parent 00a7321 commit a83b14f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 37
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch-693a6e6f8c0ba3b718e53f3df5948b0b7dde1c63c2f37af5b92ac645719f5a40.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch-60f88b9ae0cedc03dd888b63ca8dec25658c87e6cc3493170114144ca9e070c9.yml

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The Finch Python library provides convenient access to the Finch REST API from a
66
application. The library includes type definitions for all request params and response fields,
77
and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
88

9+
It is generated with [Stainless](https://www.stainlessapi.com/).
10+
911
## Documentation
1012

1113
The REST API documentation can be found [in the Finch Documentation Center](https://developer.tryfinch.com/). The full API of this library can be found in [api.md](api.md).

src/finch/resources/hris/company.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def retrieve(
3434
extra_body: Body | None = None,
3535
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
3636
) -> Company:
37-
"""Read basic company data."""
37+
"""Read basic company data"""
3838
return self._get(
3939
"/employer/company",
4040
options=make_request_options(
@@ -63,7 +63,7 @@ async def retrieve(
6363
extra_body: Body | None = None,
6464
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
6565
) -> Company:
66-
"""Read basic company data."""
66+
"""Read basic company data"""
6767
return await self._get(
6868
"/employer/company",
6969
options=make_request_options(

0 commit comments

Comments
 (0)