Skip to content

Commit 6c0ab9f

Browse files
author
maxi297
committed
fix serializers
1 parent 2ff1cd9 commit 6c0ab9f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

airbyte_cdk/models/airbyte_protocol_serializers.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
# Copyright (c) 2024 Airbyte, Inc., all rights reserved.
22
from typing import Any, Dict
33

4-
from serpyco_rs import CustomType, Serializer
5-
6-
from .airbyte_protocol import ( # type: ignore[attr-defined] # all classes are imported to airbyte_protocol via *
4+
from airbyte_protocol_dataclasses.models import ( # type: ignore[attr-defined] # all classes are imported to airbyte_protocol via *
75
AirbyteMessage,
86
AirbyteStateBlob,
97
AirbyteStateMessage,
@@ -12,6 +10,7 @@
1210
ConfiguredAirbyteStream,
1311
ConnectorSpecification,
1412
)
13+
from serpyco_rs import CustomType, Serializer
1514

1615

1716
class AirbyteStateBlobType(CustomType[AirbyteStateBlob, Dict[str, Any]]):

0 commit comments

Comments
 (0)