Skip to content

Commit cf06028

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent 656a806 commit cf06028

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

airbyte_cdk/sources/declarative/retrievers/simple_retriever.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,9 @@ def _read_pages(
385385
response = None
386386
try:
387387
if self.additional_query_properties:
388-
for properties in self.additional_query_properties.get_request_property_chunks():
388+
for (
389+
properties
390+
) in self.additional_query_properties.get_request_property_chunks():
389391
stream_slice = StreamSlice(
390392
partition=stream_slice.partition or {},
391393
cursor_slice=stream_slice.cursor_slice or {},

unit_tests/sources/declarative/requesters/query_properties/test_property_chunking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def test_given_single_property_chunk_when_get_request_property_chunks_then_alway
175175
property_chunking.get_request_property_chunks(
176176
property_fields=property_fields,
177177
always_include_properties=["id"],
178-
configured_properties=None
178+
configured_properties=None,
179179
)
180180
)
181181

0 commit comments

Comments
 (0)