File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 8
8
import pytest
9
9
import requests
10
10
11
+ from airbyte_cdk import Decoder
12
+ from airbyte_cdk .sources .declarative .decoders .json_decoder import (
13
+ IterableDecoder ,
14
+ JsonDecoder ,
15
+ JsonlDecoder ,
16
+ )
17
+ from airbyte_cdk .sources .declarative .extractors .dpath_extractor import DpathExtractor
11
18
from airbyte_cdk import Decoder
12
19
from airbyte_cdk .sources .declarative .decoders .json_decoder import (
13
20
IterableDecoder ,
16
23
)
17
24
from airbyte_cdk .sources .declarative .extractors .dpath_extractor import DpathExtractor
18
25
from airbyte_cdk .sources .declarative .extractors .record_extractor import (
19
- exclude_service_keys ,
20
26
assert_service_keys_exist ,
27
+ exclude_service_keys ,
21
28
)
22
29
23
30
config = {"field" : "record_array" }
You can’t perform that action at this time.
0 commit comments