Skip to content

Commit b3b0787

Browse files
committed
deepcopy / dic ttype
1 parent df890ed commit b3b0787

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

airbyte_cdk/manifest_server/command_processor/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import copy
2-
from typing import Any, List, Mapping, Optional
2+
from typing import Any, Dict, List, Mapping, Optional
33

44
from airbyte_protocol_dataclasses.models import AirbyteStateMessage
55

@@ -56,7 +56,7 @@ def should_normalize_manifest(manifest: Mapping[str, Any]) -> bool:
5656

5757

5858
def build_source(
59-
manifest: Mapping[str, Any],
59+
manifest: Dict[str, Any],
6060
catalog: Optional[ConfiguredAirbyteCatalog],
6161
config: Mapping[str, Any],
6262
state: Optional[List[AirbyteStateMessage]],

airbyte_cdk/manifest_server/routers/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636

3737
def safe_build_source(
38-
manifest_dict: Mapping[str, Any],
38+
manifest_dict: Dict[str, Any],
3939
config_dict: Mapping[str, Any],
4040
catalog: Optional[ConfiguredAirbyteCatalog] = None,
4141
state: Optional[List[AirbyteStateMessage]] = None,

0 commit comments

Comments
 (0)