Skip to content

Commit 46cd360

Browse files
committed
mypy fixes
1 parent 8e0cbba commit 46cd360

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

airbyte/_connector_base.py

-1
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,6 @@ def _execute(
399399
stdin: IO[str] | AirbyteMessageIterator | None = None,
400400
*,
401401
progress_tracker: ProgressTracker | None = None,
402-
env: dict[str, str] | None = None,
403402
) -> Generator[AirbyteMessage, None, None]:
404403
"""Execute the connector with the given arguments.
405404

airbyte/_executors/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def env_vars(self) -> dict[str, str]:
225225
By default, this is an empty dict. Subclasses may override this method
226226
to provide custom environment variables.
227227
"""
228-
result = cast(dict[str,str], os.environ.copy())
228+
result = os.environ.copy()
229229
if self.http_cache:
230230
result.update(self.http_cache.get_env_vars())
231231

airbyte/_executors/declarative.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def execute(
106106
stdin: IO[str] | AirbyteMessageIterator | None = None,
107107
) -> Iterator[str]:
108108
"""Execute the declarative source."""
109-
_ = stdin, env # Not used
109+
_ = stdin # Not used
110110
source_entrypoint = AirbyteEntrypoint(self.declarative_source)
111111

112112
mapped_args: list[str] = self.map_cli_args(args)

airbyte/_executors/docker.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
22
from __future__ import annotations
33

4-
import http
54
import logging
65
import shutil
76
import tempfile
87
from pathlib import Path
9-
from typing import NoReturn
8+
from typing import TYPE_CHECKING, NoReturn
109

1110
from airbyte import exceptions as exc
1211
from airbyte._executors.base import Executor
1312
from airbyte.constants import TEMP_DIR_OVERRIDE
14-
from airbyte.http_caching.cache import AirbyteConnectorCache
13+
14+
15+
if TYPE_CHECKING:
16+
from airbyte.http_caching.cache import AirbyteConnectorCache
1517

1618

1719
logger = logging.getLogger("airbyte")

airbyte/_executors/python.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121

2222
if TYPE_CHECKING:
23+
from airbyte.http_caching.cache import AirbyteConnectorCache
2324
from airbyte.sources.registry import ConnectorMetadata
2425

2526

@@ -32,6 +33,7 @@ def __init__(
3233
target_version: str | None = None,
3334
pip_url: str | None = None,
3435
install_root: Path | None = None,
36+
http_cache: AirbyteConnectorCache | None = None,
3537
) -> None:
3638
"""Initialize a connector executor that runs a connector in a virtual environment.
3739
@@ -42,8 +44,14 @@ def __init__(
4244
pip_url: (Optional.) The pip URL of the connector to install.
4345
install_root: (Optional.) The root directory where the virtual environment will be
4446
created. If not provided, the current working directory will be used.
47+
http_cache: (Optional.) The HTTP cache to use for downloading the connector.
4548
"""
46-
super().__init__(name=name, metadata=metadata, target_version=target_version)
49+
super().__init__(
50+
name=name,
51+
metadata=metadata,
52+
target_version=target_version,
53+
http_cache=http_cache,
54+
)
4755

4856
if not pip_url and metadata and not metadata.pypi_package_name:
4957
raise exc.AirbyteConnectorNotPyPiPublishedError(

0 commit comments

Comments
 (0)