File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -713,6 +713,14 @@ def from_response_json(
713
713
if "dropped_argument_names" in json_decamelized
714
714
else None
715
715
)
716
+ transformation_function_argument_names = (
717
+ [
718
+ arg_name .strip ()
719
+ for arg_name in json_decamelized ["transformation_function_argument_names" ]
720
+ ]
721
+ if "transformation_function_argument_names" in json_decamelized
722
+ else None
723
+ )
716
724
statistics_features = (
717
725
[
718
726
feature .strip ()
@@ -762,6 +770,7 @@ def from_response_json(
762
770
dropped_argument_names = dropped_argument_names ,
763
771
dropped_feature_names = dropped_feature_names ,
764
772
feature_name_prefix = feature_name_prefix ,
773
+ transformation_function_argument_names = transformation_function_argument_names
765
774
)
766
775
767
776
# Set transformation features if already set.
You can’t perform that action at this time.
0 commit comments