Skip to content

Commit ddeaa6d

Browse files
docs(raw responses): fix duplicate the (#24)
1 parent 5d276f7 commit ddeaa6d

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

src/codex/resources/health.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class HealthResource(SyncAPIResource):
2323
@cached_property
2424
def with_raw_response(self) -> HealthResourceWithRawResponse:
2525
"""
26-
This property can be used as a prefix for any HTTP method call to return the
26+
This property can be used as a prefix for any HTTP method call to return
2727
the raw response object instead of the parsed content.
2828
2929
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers
@@ -101,7 +101,7 @@ class AsyncHealthResource(AsyncAPIResource):
101101
@cached_property
102102
def with_raw_response(self) -> AsyncHealthResourceWithRawResponse:
103103
"""
104-
This property can be used as a prefix for any HTTP method call to return the
104+
This property can be used as a prefix for any HTTP method call to return
105105
the raw response object instead of the parsed content.
106106
107107
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers

src/codex/resources/organizations/billing.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class BillingResource(SyncAPIResource):
2424
@cached_property
2525
def with_raw_response(self) -> BillingResourceWithRawResponse:
2626
"""
27-
This property can be used as a prefix for any HTTP method call to return the
27+
This property can be used as a prefix for any HTTP method call to return
2828
the raw response object instead of the parsed content.
2929
3030
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers
@@ -111,7 +111,7 @@ class AsyncBillingResource(AsyncAPIResource):
111111
@cached_property
112112
def with_raw_response(self) -> AsyncBillingResourceWithRawResponse:
113113
"""
114-
This property can be used as a prefix for any HTTP method call to return the
114+
This property can be used as a prefix for any HTTP method call to return
115115
the raw response object instead of the parsed content.
116116
117117
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers

src/codex/resources/organizations/organizations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def billing(self) -> BillingResource:
3535
@cached_property
3636
def with_raw_response(self) -> OrganizationsResourceWithRawResponse:
3737
"""
38-
This property can be used as a prefix for any HTTP method call to return the
38+
This property can be used as a prefix for any HTTP method call to return
3939
the raw response object instead of the parsed content.
4040
4141
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers
@@ -93,7 +93,7 @@ def billing(self) -> AsyncBillingResource:
9393
@cached_property
9494
def with_raw_response(self) -> AsyncOrganizationsResourceWithRawResponse:
9595
"""
96-
This property can be used as a prefix for any HTTP method call to return the
96+
This property can be used as a prefix for any HTTP method call to return
9797
the raw response object instead of the parsed content.
9898
9999
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers

src/codex/resources/projects/access_keys.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class AccessKeysResource(SyncAPIResource):
3232
@cached_property
3333
def with_raw_response(self) -> AccessKeysResourceWithRawResponse:
3434
"""
35-
This property can be used as a prefix for any HTTP method call to return the
35+
This property can be used as a prefix for any HTTP method call to return
3636
the raw response object instead of the parsed content.
3737
3838
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers
@@ -306,7 +306,7 @@ class AsyncAccessKeysResource(AsyncAPIResource):
306306
@cached_property
307307
def with_raw_response(self) -> AsyncAccessKeysResourceWithRawResponse:
308308
"""
309-
This property can be used as a prefix for any HTTP method call to return the
309+
This property can be used as a prefix for any HTTP method call to return
310310
the raw response object instead of the parsed content.
311311
312312
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers

src/codex/resources/projects/entries.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class EntriesResource(SyncAPIResource):
3838
@cached_property
3939
def with_raw_response(self) -> EntriesResourceWithRawResponse:
4040
"""
41-
This property can be used as a prefix for any HTTP method call to return the
41+
This property can be used as a prefix for any HTTP method call to return
4242
the raw response object instead of the parsed content.
4343
4444
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers
@@ -351,7 +351,7 @@ class AsyncEntriesResource(AsyncAPIResource):
351351
@cached_property
352352
def with_raw_response(self) -> AsyncEntriesResourceWithRawResponse:
353353
"""
354-
This property can be used as a prefix for any HTTP method call to return the
354+
This property can be used as a prefix for any HTTP method call to return
355355
the raw response object instead of the parsed content.
356356
357357
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers

src/codex/resources/projects/projects.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def entries(self) -> EntriesResource:
5656
@cached_property
5757
def with_raw_response(self) -> ProjectsResourceWithRawResponse:
5858
"""
59-
This property can be used as a prefix for any HTTP method call to return the
59+
This property can be used as a prefix for any HTTP method call to return
6060
the raw response object instead of the parsed content.
6161
6262
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers
@@ -324,7 +324,7 @@ def entries(self) -> AsyncEntriesResource:
324324
@cached_property
325325
def with_raw_response(self) -> AsyncProjectsResourceWithRawResponse:
326326
"""
327-
This property can be used as a prefix for any HTTP method call to return the
327+
This property can be used as a prefix for any HTTP method call to return
328328
the raw response object instead of the parsed content.
329329
330330
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers

src/codex/resources/users/myself/api_key.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class APIKeyResource(SyncAPIResource):
2323
@cached_property
2424
def with_raw_response(self) -> APIKeyResourceWithRawResponse:
2525
"""
26-
This property can be used as a prefix for any HTTP method call to return the
26+
This property can be used as a prefix for any HTTP method call to return
2727
the raw response object instead of the parsed content.
2828
2929
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers
@@ -63,7 +63,7 @@ class AsyncAPIKeyResource(AsyncAPIResource):
6363
@cached_property
6464
def with_raw_response(self) -> AsyncAPIKeyResourceWithRawResponse:
6565
"""
66-
This property can be used as a prefix for any HTTP method call to return the
66+
This property can be used as a prefix for any HTTP method call to return
6767
the raw response object instead of the parsed content.
6868
6969
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers

src/codex/resources/users/myself/myself.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def organizations(self) -> OrganizationsResource:
4747
@cached_property
4848
def with_raw_response(self) -> MyselfResourceWithRawResponse:
4949
"""
50-
This property can be used as a prefix for any HTTP method call to return the
50+
This property can be used as a prefix for any HTTP method call to return
5151
the raw response object instead of the parsed content.
5252
5353
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers
@@ -95,7 +95,7 @@ def organizations(self) -> AsyncOrganizationsResource:
9595
@cached_property
9696
def with_raw_response(self) -> AsyncMyselfResourceWithRawResponse:
9797
"""
98-
This property can be used as a prefix for any HTTP method call to return the
98+
This property can be used as a prefix for any HTTP method call to return
9999
the raw response object instead of the parsed content.
100100
101101
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers

src/codex/resources/users/myself/organizations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class OrganizationsResource(SyncAPIResource):
2323
@cached_property
2424
def with_raw_response(self) -> OrganizationsResourceWithRawResponse:
2525
"""
26-
This property can be used as a prefix for any HTTP method call to return the
26+
This property can be used as a prefix for any HTTP method call to return
2727
the raw response object instead of the parsed content.
2828
2929
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers
@@ -63,7 +63,7 @@ class AsyncOrganizationsResource(AsyncAPIResource):
6363
@cached_property
6464
def with_raw_response(self) -> AsyncOrganizationsResourceWithRawResponse:
6565
"""
66-
This property can be used as a prefix for any HTTP method call to return the
66+
This property can be used as a prefix for any HTTP method call to return
6767
the raw response object instead of the parsed content.
6868
6969
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers

src/codex/resources/users/users.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def myself(self) -> MyselfResource:
2424
@cached_property
2525
def with_raw_response(self) -> UsersResourceWithRawResponse:
2626
"""
27-
This property can be used as a prefix for any HTTP method call to return the
27+
This property can be used as a prefix for any HTTP method call to return
2828
the raw response object instead of the parsed content.
2929
3030
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers
@@ -49,7 +49,7 @@ def myself(self) -> AsyncMyselfResource:
4949
@cached_property
5050
def with_raw_response(self) -> AsyncUsersResourceWithRawResponse:
5151
"""
52-
This property can be used as a prefix for any HTTP method call to return the
52+
This property can be used as a prefix for any HTTP method call to return
5353
the raw response object instead of the parsed content.
5454
5555
For more information, see https://www.github.com/cleanlab/codex-python#accessing-raw-response-data-eg-headers

0 commit comments

Comments
 (0)