Skip to content
Snippets Groups Projects

connect GUI to new mseed

Merged Lan Dam requested to merge connect_gui_to_new_mseed into master
Files
3
@@ -141,10 +141,6 @@ class GeneralData():
"""
self.selected_key: Optional[str] = None
"""
finalized_keys: keys of the data sets that have been finalized
"""
self.finalized_keys: List[tuple[str, str], str] = []
"""
gaps: gaps info in dict:
"""
self.gaps: Dict[DataKey, List[List[float]]] = {}
@@ -215,10 +211,7 @@ class GeneralData():
return
self.track_info("Finalizing...", LogType.INFO)
if self.selected_key in self.finalized_keys:
# finalizing has performed
return
self.finalized_keys.append(self.selected_key)
self.sort_all_data()
self.combine_all_data()
self.apply_convert_factor_to_data_dicts()
Loading