Skip to content

Commit f9a7ed2

Browse files
committed
fix import for state blob
1 parent 1f552d5 commit f9a7ed2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

airbyte_cdk/models/airbyte_protocol_serializers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
from airbyte_protocol_dataclasses.models import ( # type: ignore[attr-defined] # all classes are imported to airbyte_protocol via *
55
AirbyteMessage,
6-
AirbyteStateBlob,
76
AirbyteStateMessage,
87
AirbyteStreamState,
98
ConfiguredAirbyteCatalog,
@@ -12,6 +11,8 @@
1211
)
1312
from serpyco_rs import CustomType, Serializer
1413

14+
from .airbyte_protocol import AirbyteStateBlob
15+
1516

1617
class AirbyteStateBlobType(CustomType[AirbyteStateBlob, Dict[str, Any]]):
1718
def serialize(self, value: AirbyteStateBlob) -> Dict[str, Any]:

0 commit comments

Comments
 (0)