Skip to content

Commit 530a787

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent c4ca314 commit 530a787

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,10 @@ def set_initial_state(self, stream_state: StreamState) -> None:
282282

283283
# Set state for each parent stream with an incremental dependency
284284
for parent_config in self.parent_stream_configs:
285-
if not parent_state.get(parent_config.stream.name, {}) and parent_config.incremental_dependency:
285+
if (
286+
not parent_state.get(parent_config.stream.name, {})
287+
and parent_config.incremental_dependency
288+
):
286289
# Migrate child state to parent state format
287290
parent_state = self._migrate_child_state_to_parent_state(stream_state)
288291

0 commit comments

Comments
 (0)