Skip to content

Commit f07166e

Browse files
authored
preserve positional order of constructor, force kwargs where necessary for correctness
1 parent ed9ab55 commit f07166e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

airbyte_cdk/sources/declarative/concurrent_declarative_source.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,9 @@ def __init__(
171171
self,
172172
catalog: Optional[ConfiguredAirbyteCatalog],
173173
config: Optional[Mapping[str, Any]],
174-
source_config: ConnectionDefinition,
175174
state: Optional[List[AirbyteStateMessage]] = None,
175+
*,
176+
source_config: ConnectionDefinition,
176177
debug: bool = False,
177178
emit_connector_builder_messages: bool = False,
178179
migrate_manifest: bool = False,

0 commit comments

Comments
 (0)