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
add *args
Signed-off-by: Achal Shah <achals@gmail.com>
  • Loading branch information
achals committed Apr 2, 2022
commit 4aef576d5289e1f140e815ab0edffb898faebaf7
2 changes: 1 addition & 1 deletion sdk/python/feast/proto_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def to_json_object(printer: _Printer, message: ProtoMessage) -> JsonObject:
return value

def from_json_object(
parser: _Parser, value: JsonObject, message: ProtoMessage
parser: _Parser, value: JsonObject, message: ProtoMessage, *args
) -> None:
if value is None:
message.null_val = 0
Expand Down