Skip to content
Closed
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
Next Next commit
fix: Fixed linting issue
Signed-off-by: Bhargav Dodla <bdodla@expediagroup.com>
  • Loading branch information
Bhargav Dodla committed Aug 20, 2024
commit 3a0dee8e9de98c44572872af5f352a1fa038c976
4 changes: 2 additions & 2 deletions sdk/python/feast/project_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ def from_proto(cls, project_metadata_proto: ProjectMetadataProto):
project_metadata = cls(
project_name=project_metadata_proto.project,
project_uuid=project_metadata_proto.project_uuid,
last_updated_timestamp=project_metadata_proto.last_updated_timestamp.ToDatetime(
tzinfo=timezone.utc
last_updated_timestamp=project_metadata_proto.last_updated_timestamp.ToDatetime().astimezone(
tz=timezone.utc
),
)

Expand Down