Skip to content

Commit 909810d

Browse files
committed
Comments
1 parent b5a91c0 commit 909810d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

psm_utils/io/sage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def _parse_ion_mobility(psm_dict: dict) -> Optional[float]:
108108
Parse ion mobility from PSM dictionary.
109109
Returns None if not present.
110110
"""
111-
if "ion_mobility" in psm_dict: # Older versions of Sage, no ion mobility column
111+
if "ion_mobility" in psm_dict: # Older versions of Sage have no ion mobility column
112112
if float(psm_dict["ion_mobility"]): # If ion mobility is not 0.0 (not present)
113113
return float(psm_dict["ion_mobility"])
114114
return None

0 commit comments

Comments
 (0)