Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Achal Shah <[email protected]>
  • Loading branch information
achals committed Apr 11, 2022
1 parent dc06cc2 commit 67c41b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/data_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ def from_proto(data_source: DataSourceProto):
for key, val in schema_pb.items():
schema[key] = ValueType(val)

assert data_source.push_options.HasField("batch_source")
assert data_source.HasField("batch_source")
batch_source = DataSource.from_proto(data_source.batch_source)

return PushSource(
Expand Down

0 comments on commit 67c41b4

Please sign in to comment.