Skip to content

Commit a8881dd

Browse files
committed
httpx vs impit
1 parent 71ac38d commit a8881dd

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/run_code_checks.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ jobs:
3636

3737
integration_tests:
3838
name: Integration tests
39-
needs: [lint_check, type_check, unit_tests]
4039
uses: apify/workflows/.github/workflows/python_integration_tests.yaml@main
4140
secrets: inherit
4241
with:

src/apify/request_loaders/_apify_request_list.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from pydantic import BaseModel, Field, TypeAdapter
99

1010
from crawlee._types import HttpMethod
11-
from crawlee.http_clients import HttpClient, HttpxHttpClient
11+
from crawlee.http_clients import HttpClient, ImpitHttpClient
1212
from crawlee.request_loaders import RequestList
1313

1414
from apify import Request
@@ -80,7 +80,7 @@ async def _create_request_list(
8080
name: str | None, request_list_sources_input: list[dict[str, Any]], http_client: HttpClient | None
8181
) -> ApifyRequestList:
8282
if not http_client:
83-
http_client = HttpxHttpClient()
83+
http_client = ImpitHttpClient()
8484

8585
url_inputs = url_input_adapter.validate_python(request_list_sources_input)
8686

0 commit comments

Comments
 (0)