Skip to content

Commit 4d7c9e4

Browse files
committed
Format python code
Signed-off-by: Tsotne Tabidze <tsotnet@gmail.com>
1 parent fd8084e commit 4d7c9e4

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

sdk/python/feast/client.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@
3232
CONFIG_CORE_URL_KEY,
3333
CONFIG_ENABLE_AUTH_KEY,
3434
CONFIG_GRPC_CONNECTION_TIMEOUT_DEFAULT_KEY,
35+
CONFIG_JOB_SERVICE_ENABLE_SSL_KEY,
36+
CONFIG_JOB_SERVICE_SERVER_SSL_CERT_KEY,
37+
CONFIG_JOB_SERVICE_URL_KEY,
3538
CONFIG_PROJECT_KEY,
3639
CONFIG_SERVING_ENABLE_SSL_KEY,
3740
CONFIG_SERVING_SERVER_SSL_CERT_KEY,
3841
CONFIG_SERVING_URL_KEY,
3942
CONFIG_SPARK_HISTORICAL_FEATURE_OUTPUT_FORMAT,
4043
CONFIG_SPARK_HISTORICAL_FEATURE_OUTPUT_LOCATION,
4144
CONFIG_SPARK_STAGING_LOCATION,
42-
CONFIG_JOB_SERVICE_ENABLE_SSL_KEY,
43-
CONFIG_JOB_SERVICE_SERVER_SSL_CERT_KEY,
44-
CONFIG_JOB_SERVICE_URL_KEY,
4545
FEAST_DEFAULT_OPTIONS,
4646
)
4747
from feast.core.CoreService_pb2 import (

sdk/python/feast/job_service.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
import feast
66
from feast.core import JobService_pb2_grpc
77
from feast.third_party.grpc.health.v1 import HealthService_pb2_grpc
8-
from feast.third_party.grpc.health.v1.HealthService_pb2 import HealthCheckResponse, ServingStatus
8+
from feast.third_party.grpc.health.v1.HealthService_pb2 import (
9+
HealthCheckResponse,
10+
ServingStatus,
11+
)
912

1013

1114
class JobServiceServicer(JobService_pb2_grpc.JobServiceServicer):

0 commit comments

Comments
 (0)