Skip to content

Commit

Permalink
Format python code
Browse files Browse the repository at this point in the history
Signed-off-by: Tsotne Tabidze <tsotnet@gmail.com>
  • Loading branch information
tsotnet committed Oct 21, 2020
1 parent fd8084e commit 4d7c9e4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions sdk/python/feast/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@
CONFIG_CORE_URL_KEY,
CONFIG_ENABLE_AUTH_KEY,
CONFIG_GRPC_CONNECTION_TIMEOUT_DEFAULT_KEY,
CONFIG_JOB_SERVICE_ENABLE_SSL_KEY,
CONFIG_JOB_SERVICE_SERVER_SSL_CERT_KEY,
CONFIG_JOB_SERVICE_URL_KEY,
CONFIG_PROJECT_KEY,
CONFIG_SERVING_ENABLE_SSL_KEY,
CONFIG_SERVING_SERVER_SSL_CERT_KEY,
CONFIG_SERVING_URL_KEY,
CONFIG_SPARK_HISTORICAL_FEATURE_OUTPUT_FORMAT,
CONFIG_SPARK_HISTORICAL_FEATURE_OUTPUT_LOCATION,
CONFIG_SPARK_STAGING_LOCATION,
CONFIG_JOB_SERVICE_ENABLE_SSL_KEY,
CONFIG_JOB_SERVICE_SERVER_SSL_CERT_KEY,
CONFIG_JOB_SERVICE_URL_KEY,
FEAST_DEFAULT_OPTIONS,
)
from feast.core.CoreService_pb2 import (
Expand Down
5 changes: 4 additions & 1 deletion sdk/python/feast/job_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
import feast
from feast.core import JobService_pb2_grpc
from feast.third_party.grpc.health.v1 import HealthService_pb2_grpc
from feast.third_party.grpc.health.v1.HealthService_pb2 import HealthCheckResponse, ServingStatus
from feast.third_party.grpc.health.v1.HealthService_pb2 import (
HealthCheckResponse,
ServingStatus,
)


class JobServiceServicer(JobService_pb2_grpc.JobServiceServicer):
Expand Down

0 comments on commit 4d7c9e4

Please sign in to comment.