Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
not sure why fix linting
Signed-off-by: cmuhao <sduxuhao@gmail.com>
  • Loading branch information
HaoXuAI committed Sep 6, 2024
commit 36f9389d0a06fa6c0539e04a99c36bd0cfc3bfdc
8 changes: 7 additions & 1 deletion sdk/python/feast/data_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,13 @@ def __init__(
owner: Optional[str] = "",
):
"""Creates a RequestSource object."""
super().__init__(name=name, timestamp_field=timestamp_field, description=description, tags=tags, owner=owner)
super().__init__(
name=name,
timestamp_field=timestamp_field,
description=description,
tags=tags,
owner=owner,
)
self.schema = schema

def validate(self, config: RepoConfig):
Expand Down