Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Zhang <[email protected]>
  • Loading branch information
kevjumba committed Mar 31, 2022
1 parent 291463a commit 64c740b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sdk/python/feast/infra/offline_stores/file_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down Expand Up @@ -315,6 +316,7 @@ def __init__(
):
self.file_options = FileOptions(
file_format=file_format,
file_url="",
s3_endpoint_override=s3_endpoint_override,
uri=path,
)
Expand Down

0 comments on commit 64c740b

Please sign in to comment.