Skip to content

Commit 01f1eed

Browse files
committed
format
1 parent 448074d commit 01f1eed

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

airbyte_cdk/sources/streams/concurrent/adapters.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -302,10 +302,7 @@ def read(self) -> Iterable[Record]:
302302
stream_name=self.stream_name(),
303303
associated_slice=self._slice, # type: ignore [arg-type]
304304
)
305-
elif (
306-
isinstance(record_data, AirbyteMessage)
307-
and record_data.record is not None
308-
):
305+
elif isinstance(record_data, AirbyteMessage) and record_data.record is not None:
309306
yield Record(
310307
data=record_data.record.data or {},
311308
stream_name=self.stream_name(),

0 commit comments

Comments
 (0)