Skip to content

Commit 2ff1cd9

Browse files
author
maxi297
committed
Fix import for models
1 parent af0640c commit 2ff1cd9

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

airbyte_cdk/destinations/destination.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,18 @@
1010
from typing import Any, Iterable, List, Mapping
1111

1212
import orjson
13+
from airbyte_protocol_dataclasses.models import (
14+
AirbyteMessage,
15+
ConfiguredAirbyteCatalog,
16+
DestinationCatalog,
17+
Type,
18+
)
1319

1420
from airbyte_cdk.connector import Connector
1521
from airbyte_cdk.exception_handler import init_uncaught_exception_handler
1622
from airbyte_cdk.models import (
17-
AirbyteMessage,
1823
AirbyteMessageSerializer,
19-
ConfiguredAirbyteCatalog,
2024
ConfiguredAirbyteCatalogSerializer,
21-
DestinationCatalog,
22-
Type,
2325
)
2426
from airbyte_cdk.sources.utils.schema_helpers import check_config_against_spec_or_exit
2527
from airbyte_cdk.utils.traced_exception import AirbyteTracedException

0 commit comments

Comments
 (0)