Skip to content

Commit f81666e

Browse files
committed
Code lint
1 parent 9b6cb63 commit f81666e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@ def stream_slices(self) -> Iterable[StreamSlice]:
115115
* Yield the last slice. At that point, once there are as many slices yielded as closes, the global slice will be closed too
116116
"""
117117
slice_generator = (
118-
StreamSlice(partition=partition, cursor_slice=cursor_slice, extra_fields=partition.extra_fields)
118+
StreamSlice(
119+
partition=partition, cursor_slice=cursor_slice, extra_fields=partition.extra_fields
120+
)
119121
for partition in self._partition_router.stream_slices()
120122
for cursor_slice in self._stream_cursor.stream_slices()
121123
)
@@ -131,7 +133,9 @@ def stream_slices(self) -> Iterable[StreamSlice]:
131133

132134
def generate_slices_from_partition(self, partition: StreamSlice) -> Iterable[StreamSlice]:
133135
slice_generator = (
134-
StreamSlice(partition=partition, cursor_slice=cursor_slice, extra_fields=partition.extra_fields)
136+
StreamSlice(
137+
partition=partition, cursor_slice=cursor_slice, extra_fields=partition.extra_fields
138+
)
135139
for cursor_slice in self._stream_cursor.stream_slices()
136140
)
137141

0 commit comments

Comments
 (0)