We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92a0b7e commit 73eaa0eCopy full SHA for 73eaa0e
airbyte/_executors/declarative.py
@@ -40,7 +40,7 @@ class DeclarativeExecutor(Executor):
40
41
def __init__(
42
self,
43
- manifest: str | dict | Path,
+ manifest: dict | Path,
44
) -> None:
45
"""Initialize a declarative executor.
46
@@ -53,10 +53,6 @@ def __init__(
53
if isinstance(manifest, Path):
54
self._manifest_dict = cast(dict, json.loads(manifest.read_text()))
55
56
- elif isinstance(manifest, str):
57
- # TODO: Implement HTTP path parsing
58
- raise NotImplementedError("HTTP path parsing is not yet implemented.")
59
-
60
elif isinstance(manifest, dict):
61
self._manifest_dict = manifest
62
0 commit comments