Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix linthing
Signed-off-by: HaoXuAI <sduxuhao@gmail.com>
  • Loading branch information
HaoXuAI committed Mar 23, 2025
commit be57aea0f901e97036ce6f340ca55cf4afd7a841
2 changes: 1 addition & 1 deletion sdk/python/feast/transformation/python_transformation.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def transform_singleton(self, input_dict: dict) -> dict:
# in the case of a singleton element, it takes the value directly
# in the case of a list of lists, it takes the first list
input_dict = {k: v[0] for k, v in input_dict.items()}
output_dict = self.udf(input_dict)
output_dict = self.udf.__call__(input_dict)
return {**input_dict, **output_dict}

def infer_features(
Expand Down
Loading