From 64c740b4930ba51d81dc2143322aedcaa27a0c81 Mon Sep 17 00:00:00 2001 From: Kevin Zhang Date: Thu, 31 Mar 2022 11:24:09 -0700 Subject: [PATCH] Fix lint Signed-off-by: Kevin Zhang --- sdk/python/feast/infra/offline_stores/file_source.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdk/python/feast/infra/offline_stores/file_source.py b/sdk/python/feast/infra/offline_stores/file_source.py index 63eb94e860..0990798a75 100644 --- a/sdk/python/feast/infra/offline_stores/file_source.py +++ b/sdk/python/feast/infra/offline_stores/file_source.py @@ -279,6 +279,7 @@ def from_proto(cls, file_options_proto: DataSourceProto.FileOptions): """ file_options = cls( file_format=FileFormat.from_proto(file_options_proto.file_format), + file_url="", uri=file_options_proto.uri, s3_endpoint_override=file_options_proto.s3_endpoint_override, ) @@ -315,6 +316,7 @@ def __init__( ): self.file_options = FileOptions( file_format=file_format, + file_url="", s3_endpoint_override=s3_endpoint_override, uri=path, )