Skip to content

Commit

Permalink
Import Request and Response directly from requests in client.py (
Browse files Browse the repository at this point in the history
  • Loading branch information
burnash authored Apr 11, 2024
1 parent d48942f commit 1c01821
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlt/sources/helpers/rest_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
from urllib.parse import urlparse

from requests import Session as BaseSession # noqa: I251
from requests import Response, Request

from dlt.common import logger
from dlt.common import jsonpath
from dlt.sources.helpers.requests.retry import Client
from dlt.sources.helpers.requests import Response, Request

from .typing import HTTPMethodBasic, HTTPMethod, Hooks
from .paginators import BasePaginator
Expand Down

0 comments on commit 1c01821

Please sign in to comment.