Skip to content

MAINT: address pandas deprecation warning

The following future warning is raised when reading injection files:

FutureWarning: The 'delim_whitespace' keyword in pd.read_csv is deprecated and will be removed in a future version. Use ``sep='\s+'`` instead
  return pd.read_csv(injection_file, delim_whitespace=True)

This MR updates the call to pandas.read_csv as suggested in the warning.

Merge request reports