Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Justin Yu <[email protected]>
Signed-off-by: Ishant Mrinal <[email protected]>
Signed-off-by: n3011 <[email protected]>
  • Loading branch information
2 people authored and n3011 committed Dec 21, 2023
1 parent d419277 commit 75f2c38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ray/train/_checkpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def get_metadata(self) -> Dict[str, Any]:
If no metadata is stored, an empty dict is returned.
"""
metadata_path = (Path(self.path) / _METADATA_FILE_NAME).as_posix()
metadata_path = Path(self.path, _METADATA_FILE_NAME).as_posix()
if not _exists_at_fs_path(self.filesystem, metadata_path):
return {}

Expand Down

0 comments on commit 75f2c38

Please sign in to comment.