Skip to content
Merged
Show file tree
Hide file tree
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
Signed-off-by: Kevin Zhang <kzhang@tecton.ai>
  • Loading branch information
kevjumba committed Apr 5, 2022
commit 7b7395ce7848f25e454dd38b802fee27c4e4ef2e
2 changes: 1 addition & 1 deletion sdk/python/feast/data_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import enum
import warnings
from abc import ABC, abstractmethod
from typing import Any, Callable, Dict, Iterable, Optional, Tuple, Union, List, Field
from typing import Any, Callable, Dict, Field, Iterable, List, Optional, Tuple, Union

from google.protobuf.json_format import MessageToJson

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,7 @@ def similarity_feature_view(


def create_conv_rate_request_data_source():
return RequestSource(
name="conv_rate_input", schema={"val_to_add": ValueType.INT32}
)
return RequestSource(name="conv_rate_input", schema={"val_to_add": ValueType.INT32})


def create_similarity_request_data_source():
Expand Down