Skip to content

Commit c9ad3bd

Browse files
committed
fix imports
1 parent 1e74eef commit c9ad3bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

airbyte_cdk/test/declarative/test_suites/connector_base.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
AirbyteMessage,
2121
Type,
2222
)
23+
from airbyte_cdk.sources import Source
2324
from airbyte_cdk.sources.declarative.declarative_source import (
2425
AbstractSource,
25-
ConcurrentDeclarativeSource,
26-
Source,
26+
DeclarativeSource,
2727
)
2828
from airbyte_cdk.test import entrypoint_wrapper
2929
from airbyte_cdk.test.declarative.models import (
@@ -112,7 +112,7 @@ class ConnectorTestSuiteBase(abc.ABC):
112112
@classmethod
113113
def create_connector(
114114
cls, scenario: ConnectorTestScenario
115-
) -> Source | AbstractSource | ConcurrentDeclarativeSource | RunnableConnector:
115+
) -> Source | AbstractSource | DeclarativeSource | RunnableConnector:
116116
"""Instantiate the connector class."""
117117
raise NotImplementedError("Subclasses must implement this method.")
118118

0 commit comments

Comments
 (0)