We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 448074d commit 01f1eedCopy full SHA for 01f1eed
airbyte_cdk/sources/streams/concurrent/adapters.py
@@ -302,10 +302,7 @@ def read(self) -> Iterable[Record]:
302
stream_name=self.stream_name(),
303
associated_slice=self._slice, # type: ignore [arg-type]
304
)
305
- elif (
306
- isinstance(record_data, AirbyteMessage)
307
- and record_data.record is not None
308
- ):
+ elif isinstance(record_data, AirbyteMessage) and record_data.record is not None:
309
yield Record(
310
data=record_data.record.data or {},
311
0 commit comments