Skip to content

Commit

Permalink
Fix python linting problems
Browse files Browse the repository at this point in the history
  • Loading branch information
zhilingc committed Apr 15, 2020
1 parent a1900e3 commit d714016
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sdk/python/feast/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
GetFeatureSetRequest,
GetFeatureSetResponse,
GetFeatureStatisticsRequest,
GetFeatureStatisticsResponse,
ListFeatureSetsRequest,
ListFeatureSetsResponse,
ListProjectsRequest,
Expand Down Expand Up @@ -657,7 +656,6 @@ def get_online_features(
)
)


def list_ingest_jobs(
self,
job_id: str = None,
Expand Down Expand Up @@ -862,7 +860,6 @@ def ingest(

return dataset_id


def get_statistics(
self,
feature_set_id: str,
Expand Down Expand Up @@ -913,7 +910,10 @@ def get_statistics(
)

request = GetFeatureStatisticsRequest(
feature_set_id=feature_set_id, feature_ids=features, store=store, force_refresh=force_refresh
feature_set_id=feature_set_id,
feature_ids=features,
store=store,
force_refresh=force_refresh,
)
if dataset_ids is not None:
request.dataset_ids.extend(dataset_ids)
Expand Down

0 comments on commit d714016

Please sign in to comment.