diff --git a/apex/core/property/Phonon.py b/apex/core/property/Phonon.py index d1e017a..3dc9c6e 100644 --- a/apex/core/property/Phonon.py +++ b/apex/core/property/Phonon.py @@ -455,9 +455,10 @@ def extract_seekpath_band(seekpath_data: dict): return extracted_path @staticmethod - def band_list_2_phonopy_band_string(band_list: list[list[dict[Any, Any]]]) -> [str, str]: + def band_list_2_phonopy_band_string(band_list) -> [str, str]: band_string = "" band_label = "" + # type of band_list: list[list[dict[Any, Any]]] for branch in band_list: for point in branch: name = list(point.keys())[0]