Skip to content

Commit ce7712b

Browse files
updated KeyTransformation
1 parent a47a6a9 commit ce7712b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airbyte_cdk/sources/declarative/transformations/dpath_flatten_fields.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
class KeyTransformation:
1313
config: Config
1414
parameters: InitVar[Mapping[str, Any]]
15-
prefix: Union[InterpolatedString, str, None] = None
16-
suffix: Union[InterpolatedString, str, None] = None
15+
prefix: Optional[str] = None
16+
suffix: Optional[str] = None
1717

1818
def __post_init__(self, parameters: Mapping[str, Any]) -> None:
1919
if self.prefix is not None:

0 commit comments

Comments
 (0)