diff --git a/airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py b/airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py index 8016838d9..91b9ba031 100644 --- a/airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py +++ b/airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py @@ -24,8 +24,8 @@ from airbyte_cdk.sources.declarative.requesters.request_path import RequestPath from airbyte_cdk.sources.types import Config, Record, StreamSlice, StreamState from airbyte_cdk.utils.mapping_helpers import ( - combine_mappings, _validate_component_request_option_paths, + combine_mappings, ) diff --git a/unit_tests/utils/test_mapping_helpers.py b/unit_tests/utils/test_mapping_helpers.py index b6f26efb6..f0370ba86 100644 --- a/unit_tests/utils/test_mapping_helpers.py +++ b/unit_tests/utils/test_mapping_helpers.py @@ -1,10 +1,10 @@ import pytest from airbyte_cdk.utils.mapping_helpers import ( - combine_mappings, - _validate_component_request_option_paths, RequestOption, RequestOptionType, + _validate_component_request_option_paths, + combine_mappings, )