Skip to content

Commit 6a7b703

Browse files
committed
remove unneeded arg
1 parent 88f8256 commit 6a7b703

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

airbyte_cdk/utils/connector_paths.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,6 @@ def _find_in_adjacent_dirs(current_dir: Path) -> Path | None:
8686

8787
def resolve_connector_name_and_directory(
8888
connector_ref: str | Path | None = None,
89-
*,
90-
connector_directory: Path | None = None,
9189
) -> tuple[str, Path]:
9290
"""Resolve the connector name and directory.
9391
@@ -104,6 +102,7 @@ def resolve_connector_name_and_directory(
104102
FileNotFoundError: If the connector directory does not exist or cannot be found.
105103
"""
106104
connector_name: str | None = None
105+
connector_directory: Path | None = None
107106

108107
# Resolve connector_ref to connector_name or connector_directory (if provided)
109108
if connector_ref:

0 commit comments

Comments
 (0)