Skip to content

Commit 3a00ee5

Browse files
style: fix ruff formatting
Co-Authored-By: Daryna Ishchenko <darina.ishchenko17@gmail.com>
1 parent 057f8dc commit 3a00ee5

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

airbyte_cdk/sources/declarative/retrievers/client_side_incremental_retriever_decorator.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@ def read_records(
4747
if self._cursor.should_be_synced(record):
4848
yield record
4949
elif isinstance(record, Mapping):
50-
record_obj = Record(
51-
data=record, associated_slice=stream_slice, stream_name=""
52-
)
50+
record_obj = Record(data=record, associated_slice=stream_slice, stream_name="")
5351
if self._cursor.should_be_synced(record_obj):
5452
yield record
5553
else:

0 commit comments

Comments
 (0)