Skip to content

Commit

Permalink
fixed return type
Browse files Browse the repository at this point in the history
  • Loading branch information
picciama committed Oct 24, 2023
1 parent 4a60a9c commit 398ce26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spectrum_io/raw/msraw.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def _read_mzml_pymzml(file_list: List[Path], scanidx: Optional[List] = None, *ar
return data

@staticmethod
def _read_mzml_pyteomics(file_list: List[Path], *args, **kwargs) -> Dict[str, str]:
def _read_mzml_pyteomics(file_list: List[Path], *args, **kwargs) -> pd.DataFrame:
data_dict = {}
for file_path in file_list:
mass_analyzer = get_mass_analyzer(file_path)
Expand Down

0 comments on commit 398ce26

Please sign in to comment.