Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
Signed-off-by: Oleksii Moskalenko <[email protected]>
  • Loading branch information
pyalex committed May 11, 2022
1 parent 6561e32 commit 33ea973
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdk/python/feast/feature_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -2064,7 +2064,7 @@ def validate_logged_features(
throw_exception: throw exception or return it as a result
Returns:
Throw or return (depends on parameter) ValidationFailed if validation was not successful
Throw or return (depends on parameter) ValidationFailed exception if validation was not successful
or None if successful.
"""
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/offline_stores/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ def _filter_ttl(
# Filter rows by defined timestamp tolerance
if feature_view.ttl and feature_view.ttl.total_seconds() != 0:
df_to_join = df_to_join[
# do not drop entity rows if one of the sources returns NaNsq
# do not drop entity rows if one of the sources returns NaNs
df_to_join[timestamp_field].isna()
| (
(
Expand Down

0 comments on commit 33ea973

Please sign in to comment.