Skip to content

Commit

Permalink
fix: Fixed linting issue
Browse files Browse the repository at this point in the history
Signed-off-by: Bhargav Dodla <[email protected]>
  • Loading branch information
Bhargav Dodla committed Aug 20, 2024
1 parent 214cc31 commit 3a0dee8
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 3a0dee8

Please sign in to comment.