Skip to content

Commit d1d64c3

Browse files
fix: correct return type annotation in get_config_and_catalog_from_args to resolve MyPy error
Co-Authored-By: AJ Steers <[email protected]>
1 parent 35e9e50 commit d1d64c3

File tree

1 file changed

+1
-1
lines changed
  • airbyte_cdk/connector_builder

1 file changed

+1
-1
lines changed

airbyte_cdk/connector_builder/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
def get_config_and_catalog_from_args(
3636
args: List[str],
37-
) -> Tuple[str, Mapping[str, Any], Optional[ConfiguredAirbyteCatalog], Any]:
37+
) -> Tuple[str, Mapping[str, Any], Optional[ConfiguredAirbyteCatalog], List[AirbyteStateMessage]]:
3838
# TODO: Add functionality for the `debug` logger.
3939
# Currently, no one `debug` level log will be displayed during `read` a stream for a connector created through `connector-builder`.
4040
parsed_args = AirbyteEntrypoint.parse_args(args)

0 commit comments

Comments
 (0)