Skip to content

Commit 7e06bdd

Browse files
committed
move import to type checking
1 parent ea22210 commit 7e06bdd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

airbyte_cdk/test/standard_tests/source_base.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"""Base class for source test suites."""
33

44
from dataclasses import asdict
5+
from typing import TYPE_CHECKING
56

67
from airbyte_cdk.models import (
78
AirbyteMessage,
@@ -12,7 +13,6 @@
1213
SyncMode,
1314
Type,
1415
)
15-
from airbyte_cdk.test import entrypoint_wrapper
1616
from airbyte_cdk.test.standard_tests._job_runner import run_test_job
1717
from airbyte_cdk.test.standard_tests.connector_base import (
1818
ConnectorTestSuiteBase,
@@ -21,6 +21,9 @@
2121
ConnectorTestScenario,
2222
)
2323

24+
if TYPE_CHECKING:
25+
from airbyte_cdk.test import entrypoint_wrapper
26+
2427

2528
class SourceTestSuiteBase(ConnectorTestSuiteBase):
2629
"""Base class for source test suites.

0 commit comments

Comments
 (0)