Skip to content

Commit 73eaa0e

Browse files
committed
remove unused codepath
1 parent 92a0b7e commit 73eaa0e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Diff for: airbyte/_executors/declarative.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class DeclarativeExecutor(Executor):
4040

4141
def __init__(
4242
self,
43-
manifest: str | dict | Path,
43+
manifest: dict | Path,
4444
) -> None:
4545
"""Initialize a declarative executor.
4646
@@ -53,10 +53,6 @@ def __init__(
5353
if isinstance(manifest, Path):
5454
self._manifest_dict = cast(dict, json.loads(manifest.read_text()))
5555

56-
elif isinstance(manifest, str):
57-
# TODO: Implement HTTP path parsing
58-
raise NotImplementedError("HTTP path parsing is not yet implemented.")
59-
6056
elif isinstance(manifest, dict):
6157
self._manifest_dict = manifest
6258

0 commit comments

Comments
 (0)