Skip to content

Commit

Permalink
Minor fix of stdout.
Browse files Browse the repository at this point in the history
atztogo committed Jul 31, 2024
1 parent 49539f9 commit b0f0898
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/phelel/cui/load.py
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@


def load(
phonopy_yaml: Union[str, bytes, os.PathLike] = None,
phonopy_yaml: Optional[Union[str, bytes, os.PathLike]] = None,
supercell_matrix: Optional[Union[Sequence, np.ndarray]] = None,
primitive_matrix: Optional[Union[str, Sequence, np.ndarray]] = None,
phonon_supercell_matrix: Optional[Union[Sequence, np.ndarray]] = None,
2 changes: 1 addition & 1 deletion src/phelel/interface/vasp/derivatives.py
Original file line number Diff line number Diff line change
@@ -235,7 +235,7 @@ def _read_PAW_strength_and_overlap(dir_names, inwap_per, log_level=0):
Dijs.append(read_PAW_Dij_qij(inwap_per, Dij_path))
qijs.append(read_PAW_Dij_qij(inwap_per, qij_path))
if log_level:
print('"{Dij_path}" and "{qij_path}" were read.')
print(f'"{Dij_path}" and "{qij_path}" were read.')
else:
Dij_qij_path = pathlib.Path(dir_name) / "vaspout.h5"
dij, qij = read_PAW_Dij_qij_vaspouth5(Dij_qij_path)

0 comments on commit b0f0898

Please sign in to comment.