diff --git a/echopype/echodata/combine.py b/echopype/echodata/combine.py index 679346533..7bde42793 100644 --- a/echopype/echodata/combine.py +++ b/echopype/echodata/combine.py @@ -105,7 +105,7 @@ def check_and_correct_reversed_time( def assemble_combined_provenance(input_paths): - prov_dict = echopype_prov_attrs(process_type="combination") + prov_dict = echopype_prov_attrs(process_type="conversion") source_files_var, source_files_coord = source_files_vars(input_paths) ds = xr.Dataset(data_vars=source_files_var, coords=source_files_coord, attrs=prov_dict) return ds diff --git a/echopype/utils/prov.py b/echopype/utils/prov.py index cf5501f3b..4a65ee1b6 100644 --- a/echopype/utils/prov.py +++ b/echopype/utils/prov.py @@ -5,7 +5,7 @@ from _echopype_version import version as ECHOPYPE_VERSION from typing_extensions import Literal -ProcessType = Literal["conversion", "combination", "processing"] +ProcessType = Literal["conversion", "processing"] def echopype_prov_attrs(process_type: ProcessType) -> Dict[str, str]: