Skip to content

Commit 52ba2ec

Browse files
committed
Update comment to pass mypy check
1 parent c83dce6 commit 52ba2ec

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
@@ -1801,9 +1801,9 @@ def _build_stream_slicer_from_partition_router(
18011801
parameters={},
18021802
)
18031803
else:
1804-
return self._create_component_from_model(
1804+
return self._create_component_from_model( # type: ignore[no-any-return] # Will be created PartitionRouter as stream_slicer_model is model.partition_router
18051805
model=stream_slicer_model, config=config, stream_name=stream_name or ""
1806-
) # type: ignore[no-any-return] # Will be created PartitionRouter as stream_slicer_model is model.partition_router
1806+
)
18071807
return None
18081808

18091809
def _build_incremental_cursor(

0 commit comments

Comments
 (0)