Skip to content

Commit e1415cb

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent 4a20e5e commit e1415cb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

airbyte_cdk/sources/file_based/file_based_stream_reader.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,9 @@ def upload(
172172
file_size = file.size
173173

174174
if file_size > self.FILE_SIZE_LIMIT:
175-
message = f"File size exceeds the {self.FILE_SIZE_LIMIT / 1e9} GB limit. File URI: {file.uri}"
175+
message = (
176+
f"File size exceeds the {self.FILE_SIZE_LIMIT / 1e9} GB limit. File URI: {file.uri}"
177+
)
176178
raise FileSizeLimitError(
177179
message=message, internal_message=message, failure_type=FailureType.config_error
178180
)

0 commit comments

Comments
 (0)