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 88f8256 commit 6a7b703Copy full SHA for 6a7b703
airbyte_cdk/utils/connector_paths.py
@@ -86,8 +86,6 @@ def _find_in_adjacent_dirs(current_dir: Path) -> Path | None:
86
87
def resolve_connector_name_and_directory(
88
connector_ref: str | Path | None = None,
89
- *,
90
- connector_directory: Path | None = None,
91
) -> tuple[str, Path]:
92
"""Resolve the connector name and directory.
93
@@ -104,6 +102,7 @@ def resolve_connector_name_and_directory(
104
102
FileNotFoundError: If the connector directory does not exist or cannot be found.
105
103
"""
106
connector_name: str | None = None
+ connector_directory: Path | None = None
107
108
# Resolve connector_ref to connector_name or connector_directory (if provided)
109
if connector_ref:
0 commit comments