Skip to content

Commit

Permalink
remove unused codepath
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Jul 30, 2024
1 parent 92a0b7e commit 73eaa0e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions airbyte/_executors/declarative.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class DeclarativeExecutor(Executor):

def __init__(
self,
manifest: str | dict | Path,
manifest: dict | Path,
) -> None:
"""Initialize a declarative executor.
Expand All @@ -53,10 +53,6 @@ def __init__(
if isinstance(manifest, Path):
self._manifest_dict = cast(dict, json.loads(manifest.read_text()))

elif isinstance(manifest, str):
# TODO: Implement HTTP path parsing
raise NotImplementedError("HTTP path parsing is not yet implemented.")

elif isinstance(manifest, dict):
self._manifest_dict = manifest

Expand Down

0 comments on commit 73eaa0e

Please sign in to comment.