* 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
9 lines
176 B
Python
9 lines
176 B
Python
#
|
|
# Copyright (c) 2021 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
# Initialize Streams Package
|
|
from .core import IncrementalMixin, Stream
|
|
|
|
__all__ = ["IncrementalMixin", "Stream"]
|