Skip to content

Commit 6c4f835

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent 0f8858c commit 6c4f835

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2114,9 +2114,7 @@ def _build_incremental_cursor(
21142114
) -> Optional[StreamSlicer]:
21152115
state_transformations = (
21162116
[
2117-
self._create_component_from_model(
2118-
state_migration, config, declarative_stream=model
2119-
)
2117+
self._create_component_from_model(state_migration, config, declarative_stream=model)
21202118
for state_migration in model.state_migrations
21212119
]
21222120
if model.state_migrations
@@ -2190,9 +2188,7 @@ def _build_concurrent_cursor(
21902188

21912189
if model.state_migrations:
21922190
state_transformations = [
2193-
self._create_component_from_model(
2194-
state_migration, config, declarative_stream=model
2195-
)
2191+
self._create_component_from_model(state_migration, config, declarative_stream=model)
21962192
for state_migration in model.state_migrations
21972193
]
21982194
else:

0 commit comments

Comments
 (0)