Skip to content

Commit d5b4c2c

Browse files
contributing doc fix
1 parent 89a7705 commit d5b4c2c

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

docs/CONTRIBUTING.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -93,19 +93,6 @@ class Example(BaseModel):
9393
)
9494

9595

96-
class ExampleList(BaseModel):
97-
"""Represents a paginated list of examples."""
98-
99-
model_config = ConfigDict(populate_by_name=True)
100-
101-
items: list[Example] = Field(default_factory=list, description="List of examples")
102-
current_page: int | None = Field(None, description="Current page number")
103-
total_pages: int | None = Field(None, description="Total number of pages")
104-
prev_page: int | str | None = Field(None, description="Previous page number")
105-
next_page: int | str | None = Field(None, description="Next page number")
106-
total_count: int | None = Field(None, description="Total number of items")
107-
108-
10996
class ExampleListOptions(BaseModel):
11097
"""Options for listing examples."""
11198

@@ -333,7 +320,6 @@ __all__ = [
333320
# ... existing exports ...
334321
"Example",
335322
"ExampleCreateOptions",
336-
"ExampleList",
337323
"ExampleListOptions",
338324
"ExampleStatus",
339325
"ExampleUpdateOptions",

0 commit comments

Comments
 (0)