Skip to content

Commit

Permalink
Little fix
Browse files Browse the repository at this point in the history
  • Loading branch information
keell0renz committed Dec 23, 2024
1 parent 0297f17 commit 2d70aaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scrapybara/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ def scrape(
def scrape_to_pydantic(
self,
*,
cmd: typing.Optional[str] = OMIT,
schema: PydanticModelT,
cmd: typing.Optional[str] = OMIT,
model: typing.Optional[typing.Literal["claude"]] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> PydanticModelT:
Expand Down Expand Up @@ -145,8 +145,8 @@ async def scrape(
async def scrape_to_pydantic(
self,
*,
cmd: typing.Optional[str] = OMIT,
schema: PydanticModelT,
cmd: typing.Optional[str] = OMIT,
model: typing.Optional[typing.Literal["claude"]] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> PydanticModelT:
Expand Down

0 comments on commit 2d70aaa

Please sign in to comment.