Skip to content

Commit 8f14512

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent 5242876 commit 8f14512

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

airbyte_cdk/sources/declarative/retrievers/file_uploader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def upload(self, record: Record) -> None:
4949
if not download_targets:
5050
raise ValueError("No download targets found")
5151

52-
download_target = download_targets[0] # we just expect one download target
52+
download_target = download_targets[0] # we just expect one download target
5353
if not isinstance(download_target, str):
5454
raise ValueError(
5555
f"download_target is expected to be a str but was {type(download_target)}: {download_target}"

airbyte_cdk/sources/file_based/file_based_stream_reader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def _get_file_transfer_paths(
188188
"""
189189
if not path.exists(staging_directory):
190190
raise ValueError(f"Staging directory '{staging_directory}' does not exist")
191-
191+
192192
preserve_directory_structure = self.preserve_directory_structure()
193193

194194
file_name = path.basename(source_file_relative_path)

0 commit comments

Comments
 (0)