We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbe10f0 commit 5312dc5Copy full SHA for 5312dc5
1 file changed
tests/test_tools_extract.py
@@ -148,7 +148,8 @@ def test_extract_tool_runnable_rejects_non_mapping_non_string_schema():
148
}
149
150
with pytest.raises(
151
- HyperbrowserError, match="Extract tool `schema` must be an object or JSON string"
+ HyperbrowserError,
152
+ match="Extract tool `schema` must be an object or JSON string",
153
):
154
WebsiteExtractTool.runnable(client, params)
155
@@ -164,7 +165,8 @@ async def run():
164
165
await WebsiteExtractTool.async_runnable(client, params)
166
167
168
169
170
171
asyncio.run(run())
172
0 commit comments