Skip to content

Commit 448074d

Browse files
committed
type check
1 parent 49bbf7f commit 448074d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte_cdk/sources/streams/concurrent/adapters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def read(self) -> Iterable[Record]:
307307
and record_data.record is not None
308308
):
309309
yield Record(
310-
data=record_data.record.data,
310+
data=record_data.record.data or {},
311311
stream_name=self.stream_name(),
312312
associated_slice=self._slice, # type: ignore [arg-type]
313313
)

0 commit comments

Comments
 (0)