Skip to content

Commit 005b079

Browse files
committed
remove old 'airbyte_protocol_dataclasses' refs
1 parent 1ac75c6 commit 005b079

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

airbyte_cdk/models/well_known_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
33
#
44

5-
from airbyte_protocol_dataclasses.models.well_known_types import * # noqa: F403 # Allow '*'
5+
from airbyte_protocol.models.well_known_types import * # noqa: F403 # Allow '*'

airbyte_cdk/sources/streams/permissions/identities_stream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from abc import ABC, abstractmethod
77
from typing import Any, Dict, Iterable, List, Mapping, MutableMapping, Optional
88

9-
from airbyte_protocol_dataclasses.models import SyncMode
9+
from airbyte_protocol.models import SyncMode
1010

1111
from airbyte_cdk.models import AirbyteLogMessage, AirbyteMessage, Level
1212
from airbyte_cdk.models import Type as MessageType

airbyte_cdk/sql/shared/sql_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import pandas as pd
1414
import sqlalchemy
1515
import ulid
16-
from airbyte_protocol_dataclasses.models import AirbyteStateMessage
16+
from airbyte_protocol.models import AirbyteStateMessage
1717
from pandas import Index
1818
from pydantic import BaseModel, Field
1919
from sqlalchemy import Column, Table, and_, create_engine, insert, null, select, text, update

unit_tests/source_declarative_manifest/test_source_declarative_w_custom_components.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import pytest
1616
import yaml
17-
from airbyte_protocol_dataclasses.models.airbyte_protocol import AirbyteCatalog
17+
from airbyte_protocol.models.airbyte_protocol import AirbyteCatalog
1818

1919
from airbyte_cdk.cli.source_declarative_manifest._run import (
2020
_register_components_from_file,

unit_tests/sources/file_based/stream/test_file_identities_stream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from datetime import datetime, timezone
77
from unittest.mock import Mock
88

9-
from airbyte_protocol_dataclasses.models import SyncMode
9+
from airbyte_protocol.models import SyncMode
1010

1111
from airbyte_cdk.sources.file_based.discovery_policy import AbstractDiscoveryPolicy
1212
from airbyte_cdk.sources.file_based.exceptions import (

0 commit comments

Comments
 (0)