Skip to content

Commit 5f025ba

Browse files
committed
add manifest help text
1 parent c4f9eee commit 5f025ba

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

airbyte_cdk/cli/airbyte_cdk/_manifest.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
2-
"""Manifest related commands."""
2+
"""Manifest related commands.
3+
4+
Coming soon.
5+
6+
This module is planned to provide a command line interface (CLI) for validating
7+
Airbyte CDK manifests.
8+
"""
39

410
import click
511

612

713
@click.group(name="manifest")
8-
def manifest_cli_group() -> None:
14+
def manifest_cli_group(
15+
help=__doc__,
16+
) -> None:
917
"""Manifest related commands."""
1018
pass
1119

0 commit comments

Comments
 (0)