Skip to content

Commit 1b291b2

Browse files
fix: Fix for proto issue in utils
Signed-off-by: Francisco Javier Arceo <[email protected]>
1 parent a3e8967 commit 1b291b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/python/feast/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ def _convert_arrow_odfv_to_proto(
364364
for feature in feature_view.features:
365365
if (
366366
feature.name in [c[0] for c in columns]
367-
# and feature.name not in proto_values_by_column
367+
and feature.name not in proto_values_by_column
368368
):
369369
# initializing the column as null
370370
null_column = pyarrow.array(

0 commit comments

Comments
 (0)