Skip to content

Commit

Permalink
Ignore mypy in the import fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
burnash committed Jul 24, 2024
1 parent 1f7a62e commit d9c2340
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sources/rest_api/config_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
try:
from dlt.sources.helpers.rest_client.paginators import JSONLinkPaginator
except ImportError:
from dlt.sources.helpers.rest_client.paginators import JSONResponsePaginator as JSONLinkPaginator
from dlt.sources.helpers.rest_client.paginators import JSONResponsePaginator as JSONLinkPaginator # type: ignore

from dlt.sources.helpers.rest_client.detector import single_entity_path
from dlt.sources.helpers.rest_client.exceptions import IgnoreResponseException
Expand Down
2 changes: 1 addition & 1 deletion sources/rest_api/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
try:
from dlt.sources.helpers.rest_client.paginators import JSONLinkPaginator
except ImportError:
from dlt.sources.helpers.rest_client.paginators import JSONResponsePaginator as JSONLinkPaginator
from dlt.sources.helpers.rest_client.paginators import JSONResponsePaginator as JSONLinkPaginator # type: ignore

from dlt.sources.helpers.rest_client.auth import (
AuthConfigBase,
Expand Down

0 comments on commit d9c2340

Please sign in to comment.