Skip to content

Commit

Permalink
in [x, y, z] → in (x, y, z)
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Sep 30, 2023
1 parent fee3141 commit 6cc5530
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec2nii/GE/ge_pfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ def _process_svs_pfile(pfile):
data, meta, dwelltime, fname_suffix = _process_probe_p(pfile)
elif psd in ('oslaser', 'slaser_cni'):
data, meta, dwelltime, fname_suffix = _process_oslaser(pfile)
elif psd in ('slaser'):
elif psd == 'slaser':
data, meta, dwelltime, fname_suffix = _process_slaser(pfile)
elif psd in ['gaba', 'hbcd']:
elif psd in ('gaba', 'hbcd'):
data, meta, dwelltime, fname_suffix = _process_gaba(pfile)
elif 'jpress_ac' in psd: # Bergen patch
data, meta, dwelltime, fname_suffix = _process_gaba(pfile)
Expand Down

0 comments on commit 6cc5530

Please sign in to comment.