Skip to content

Commit 63cbc9b

Browse files
fix: Address PR feedback - fix typo in __all__, update docstring, and fix entry point
Co-Authored-By: Aaron <AJ> Steers <aj@airbyte.io>
1 parent 52546be commit 63cbc9b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

airbyte_cdk/cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
22
"""The `airbyte-cdk.cli` module provides command-line interfaces for the Airbyte CDK.
33
4-
As of now, it includes the following commands:
4+
As of now, it includes the following CLI entry points:
55
66
- `airbyte-cdk`: Commands for working with connectors.
77
- `source-declarative-manifest`: Directly invoke the declarative manifests connector.

airbyte_cdk/cli/airbyte_cdk/_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,6 @@ def build(
133133
sys.exit(1)
134134

135135

136-
__all___ = [
136+
__all__ = [
137137
"image_cli_group",
138138
]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ sql = ["sqlalchemy"]
118118

119119
airbyte-cdk-build = "airbyte_cdk.cli.build:run"
120120
source-declarative-manifest = "airbyte_cdk.cli.source_declarative_manifest:run"
121-
airbyte-cdk = "airbyte_cdk.cli.entrypoint:run"
121+
airbyte-cdk = "airbyte_cdk.cli.airbyte_clk:cli"
122122

123123
[tool.isort]
124124
skip = ["__init__.py"] # TODO: Remove after this is fixed: https://github.com/airbytehq/airbyte-python-cdk/issues/12

0 commit comments

Comments
 (0)