Skip to content

Commit a9c5125

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent 6ebfc05 commit a9c5125

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

airbyte_cdk/sources/declarative/extractors/record_selector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
)
1616
from airbyte_cdk.sources.declarative.interpolation import InterpolatedString
1717
from airbyte_cdk.sources.declarative.models import SchemaNormalization
18+
from airbyte_cdk.sources.declarative.retrievers.file_uploader import FileUploader
1819
from airbyte_cdk.sources.declarative.transformations import RecordTransformation
1920
from airbyte_cdk.sources.types import Config, Record, StreamSlice, StreamState
2021
from airbyte_cdk.sources.utils.transform import TypeTransformer
21-
from airbyte_cdk.sources.declarative.retrievers.file_uploader import FileUploader
2222

2323

2424
@dataclass

airbyte_cdk/sources/declarative/retrievers/file_uploader.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
import uuid
88
from dataclasses import InitVar, dataclass, field
99
from pathlib import Path
10-
from typing import Optional, Mapping, Union, Any
10+
from typing import Any, Mapping, Optional, Union
1111

12+
from airbyte_cdk.models import AirbyteRecordMessageFileReference
13+
from airbyte_cdk.sources.declarative.extractors.record_extractor import RecordExtractor
1214
from airbyte_cdk.sources.declarative.interpolation.interpolated_string import (
1315
InterpolatedString,
1416
)
15-
from airbyte_cdk.models import AirbyteRecordMessageFileReference
16-
from airbyte_cdk.sources.declarative.extractors.record_extractor import RecordExtractor
1717
from airbyte_cdk.sources.declarative.partition_routers.substream_partition_router import (
1818
SafeResponse,
1919
)

unit_tests/sources/declarative/file/test_file_stream.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import re
2-
32
from pathlib import Path
43
from typing import Any, Dict, List, Optional
54
from unittest import TestCase

0 commit comments

Comments
 (0)