Skip to content

Commit

Permalink
Update path.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean-Morrison committed Nov 6, 2024
1 parent 3493054 commit 35a4db7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/sdss_access/path/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -1640,7 +1640,9 @@ def sptypefolder(self, filetype, **kwargs):
if filetype.lower() in ['speclite_epoch','specfull_epoch',
'spallfield_epoch','spalllinefield_epoch']:
return 'epoch/spectra'
return 'epoch'
if 'epoch' in filetype.lower():
return 'epoch'
return ''
if filetype.lower() in ['fieldlist_epoch','spall_epoch',
'spall-lite_epoch','spallline_epoch']:
return 'summary/epoch'
Expand Down

0 comments on commit 35a4db7

Please sign in to comment.