Skip to content

Commit

Permalink
Airbyte CDK: fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
aldogonzalez8 committed Jul 4, 2024
1 parent a48de70 commit a5a6382
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion airbyte-cdk/python/airbyte_cdk/test/catalog_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ def with_stream(self, name: str, sync_mode: SyncMode, json_schema: Dict[str, Any
...

def with_stream(
self, name: Union[str, ConfiguredAirbyteStreamBuilder], sync_mode: Union[SyncMode, None] = None, json_schema: Dict[str, Any] = None
self,
name: Union[str, ConfiguredAirbyteStreamBuilder],
sync_mode: Union[SyncMode, None] = None,
json_schema: Union[Dict[str, Any], None] = None,
) -> "CatalogBuilder":
# As we are introducing a fully fledge ConfiguredAirbyteStreamBuilder, we would like to deprecate the previous interface
# with_stream(str, SyncMode)
Expand Down

0 comments on commit a5a6382

Please sign in to comment.