1
0
mirror of synced 2025-12-31 06:05:12 -05:00
Files
airbyte/airbyte-cdk/python/airbyte_cdk/sources/singer/__init__.py
Albin Skott be2d1a8652 🐛 SingerSource: Fix incompatibilities and typing issues (#14148)
* Use logging.Logger in SingerSource

* Fix SingerSource ConfigContainer

This fixes typing issues with `ConfigContainer` and makes it compatible
with `split_config`. Fixes #8710.

* Fix SingerSource state and catalog typer issues

* Rename SingerSource method args to match parent classes

* Remove old comment about excluding Singer

Co-authored-by: Alexandre Girard <alexandre@airbyte.io>
2022-07-01 09:03:18 -07:00

9 lines
246 B
Python

#
# Copyright (c) 2021 Airbyte, Inc., all rights reserved.
#
from .singer_helpers import SingerHelper, SyncModeInfo
from .source import ConfigContainer, SingerSource
__all__ = ["ConfigContainer", "SingerSource", "SyncModeInfo", "SingerHelper"]