We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f88a170 commit f942e60Copy full SHA for f942e60
1 file changed
airbyte_cdk/cli/airbyte_cdk/_secrets.py
@@ -19,7 +19,6 @@
19
import json
20
import os
21
from pathlib import Path
22
-from typing import Optional
23
24
import rich_click as click
25
@@ -56,8 +55,8 @@ def secrets_cli_group() -> None:
56
55
help=f"GCP project ID. Defaults to '{AIRBYTE_INTERNAL_GCP_PROJECT}'.",
57
)
58
def fetch(
59
- connector_name: Optional[str] = None,
60
- connector_directory: Optional[Path] = None,
+ connector_name: str | None = None,
+ connector_directory: Path | None = None,
61
gcp_project_id: str = AIRBYTE_INTERNAL_GCP_PROJECT,
62
) -> None:
63
"""Fetch secrets for a connector from Google Secret Manager.
0 commit comments