Skip to content

Commit

Permalink
Revert prov 'combination' process_type back to 'conversion' (#812)
Browse files Browse the repository at this point in the history
  • Loading branch information
emiliom authored Sep 16, 2022
1 parent 47b827a commit 07045b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion echopype/echodata/combine.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion echopype/utils/prov.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]:
Expand Down

0 comments on commit 07045b6

Please sign in to comment.