Skip to content

Commit d6eae14

Browse files
committed
CDK: fix mypy
Signed-off-by: Artem Inzhyyants <[email protected]>
1 parent 1d862c1 commit d6eae14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1707,11 +1707,11 @@ def create_declarative_stream(
17071707

17081708
start_time_option = (
17091709
self._create_component_from_model(
1710-
cursor_model.start_value_option, # type: ignore: mypy still thinks cursor_model of type DatetimeBasedCursor
1710+
cursor_model.start_value_option, # type: ignore # mypy still thinks cursor_model of type DatetimeBasedCursor
17111711
config,
17121712
parameters=cursor_model.parameters or {},
17131713
)
1714-
if cursor_model.start_value_option # type: ignore: mypy still thinks cursor_model of type DatetimeBasedCursor
1714+
if cursor_model.start_value_option # type: ignore # mypy still thinks cursor_model of type DatetimeBasedCursor
17151715
else None
17161716
)
17171717

0 commit comments

Comments
 (0)