1
0
mirror of synced 2025-12-30 21:02:43 -05:00
Files
airbyte/airbyte-cdk/python/airbyte_cdk/sources/streams/__init__.py
Pedro S. Lopez a6a6be2588 allow importing IncrementalMixin from airbyte_cdk.sources.streams (#11858)
* allow importing IncrementalMixin from airbyte_cdk.sources.streams

* format file

* update docs with hint on where to import IncrementalMixin from

* bump cdk version to 0.1.54

* update changelog

* only build python 3.9

* update changelog with python dep bump
2022-04-14 11:42:57 -07:00

9 lines
176 B
Python

#
# Copyright (c) 2021 Airbyte, Inc., all rights reserved.
#
# Initialize Streams Package
from .core import IncrementalMixin, Stream
__all__ = ["IncrementalMixin", "Stream"]