Skip to content

Commit 8fb98a6

Browse files
fix: Add type ignore comment for MyPy compatibility
Co-Authored-By: alfredo.garcia@airbyte.io <freddy.garcia7.fg@gmail.com>
1 parent 2ab1416 commit 8fb98a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1597,7 +1597,7 @@ def create_concurrent_cursor_from_incrementing_count_cursor(
15971597
connector_state_converter=connector_state_converter,
15981598
cursor_field=cursor_field,
15991599
slice_boundary_fields=None,
1600-
start=evaluated_start_value,
1600+
start=evaluated_start_value, # type: ignore # Having issues w/ inspection for GapType and CursorValueType as shown in existing tests. Confirmed functionality is working in practice
16011601
end_provider=connector_state_converter.get_end_provider(), # type: ignore # Having issues w/ inspection for GapType and CursorValueType as shown in existing tests. Confirmed functionality is working in practice
16021602
)
16031603

0 commit comments

Comments
 (0)