Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
Signed-off-by: tokoko <[email protected]>
  • Loading branch information
tokoko committed Apr 4, 2024
1 parent f6bd5d6 commit 6607cfa
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions sdk/python/feast/on_demand_feature_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,8 +531,6 @@ def _construct_random_input(self) -> Dict[str, List[Any]]:
feature_dict = {}
for feature_view_projection in self.source_feature_view_projections.values():
for feature in feature_view_projection.features:
if feature.dtype not in rand_dict_value:
print(feature.dtype)
feature_dict[f"{feature_view_projection.name}__{feature.name}"] = (
rand_dict_value.get(feature.dtype.to_value_type(), [None])
)
Expand Down

0 comments on commit 6607cfa

Please sign in to comment.