We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a47a6a9 commit ce7712bCopy full SHA for ce7712b
airbyte_cdk/sources/declarative/transformations/dpath_flatten_fields.py
@@ -12,8 +12,8 @@
12
class KeyTransformation:
13
config: Config
14
parameters: InitVar[Mapping[str, Any]]
15
- prefix: Union[InterpolatedString, str, None] = None
16
- suffix: Union[InterpolatedString, str, None] = None
+ prefix: Optional[str] = None
+ suffix: Optional[str] = None
17
18
def __post_init__(self, parameters: Mapping[str, Any]) -> None:
19
if self.prefix is not None:
0 commit comments