Skip to content

Commit c403e34

Browse files
committed
update type
1 parent 434c689 commit c403e34

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

airbyte_cdk/manifest_server/command_processor/processor.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,19 @@
1414
AirbyteStateMessage,
1515
ConfiguredAirbyteCatalog,
1616
)
17-
from airbyte_cdk.models.airbyte_protocol_serializers import AirbyteMessageSerializer
18-
from airbyte_cdk.sources.declarative.manifest_declarative_source import (
19-
ManifestDeclarativeSource,
17+
from airbyte_cdk.sources.declarative.concurrent_declarative_source import (
18+
ConcurrentDeclarativeSource,
2019
)
2120
from airbyte_cdk.test.entrypoint_wrapper import AirbyteEntrypointException, EntrypointOutput
2221

2322

2423
class ManifestCommandProcessor:
25-
_source: ManifestDeclarativeSource
24+
_source: ConcurrentDeclarativeSource[Optional[List[AirbyteStateMessage]]]
2625
_logger = logging.getLogger("airbyte.manifest-server")
2726

28-
def __init__(self, source: ManifestDeclarativeSource) -> None:
27+
def __init__(
28+
self, source: ConcurrentDeclarativeSource[Optional[List[AirbyteStateMessage]]]
29+
) -> None:
2930
self._source = source
3031

3132
def test_read(

0 commit comments

Comments
 (0)