Skip to content

Commit

Permalink
fix func arg
Browse files Browse the repository at this point in the history
Signed-off-by: David Wallace <[email protected]>
  • Loading branch information
MyPyDavid committed Oct 29, 2023
1 parent 77d7bfe commit b59126f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/raman_fitting/indexing/filename_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def _extra_overwrite_sID_from_mapper(
def _extra_overwrite_sgrpID_from_parts(
parts: List[str], sgrpID: str, mapper: dict = _extra_sgrpID_name_mapper
) -> str:
for k, val in _extra_sgrpID_name_mapper.items():
for k, val in mapper.items():
if k in parts:
sgrpID = val
return sgrpID
Expand Down

0 comments on commit b59126f

Please sign in to comment.