Skip to content

Commit

Permalink
Format of cached files
Browse files Browse the repository at this point in the history
	modified:   pypeit/data/utils.py
  • Loading branch information
tbowers7 committed Nov 1, 2023
1 parent 5e92575 commit 23b369f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypeit/data/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def get_reid_arxiv_filepath(arxiv_file: str) -> tuple[pathlib.Path, str]:
reid_path = fetch_remote_file(arxiv_file, "arc_lines/reid_arxiv")

# Return the path to the `reid_arxiv` file, and the file format
return reid_path, reid_path.suffix.replace('.','').lower()
return reid_path, arxiv_file.split('.')[-1].lower()


def get_skisim_filepath(skisim_file: str) -> pathlib.Path:
Expand Down

0 comments on commit 23b369f

Please sign in to comment.