mirror of https://github.com/phonopy/phono3py.git
Merge pull request #403 from phonopy/run-test
Commit to run tests on github
This commit is contained in:
commit
0269254fb9
|
@ -38,13 +38,11 @@ from __future__ import annotations
|
|||
|
||||
import dataclasses
|
||||
import os
|
||||
from typing import cast
|
||||
|
||||
import numpy as np
|
||||
from numpy.typing import ArrayLike
|
||||
from phonopy.cui.collect_cell_info import CellInfoResult
|
||||
from phonopy.cui.collect_cell_info import get_cell_info as phonopy_get_cell_info
|
||||
from phonopy.cui.settings import Settings
|
||||
from phonopy.interface.calculator import write_supercells_with_displacements
|
||||
from phonopy.structure.cells import print_cell
|
||||
|
||||
|
@ -80,7 +78,7 @@ def get_cell_info(
|
|||
) -> Phono3pyCellInfoResult:
|
||||
"""Return calculator interface and crystal structure information."""
|
||||
cell_info = phonopy_get_cell_info(
|
||||
cast(Settings, settings),
|
||||
settings,
|
||||
cell_filename,
|
||||
log_level=log_level,
|
||||
load_phonopy_yaml=load_phonopy_yaml,
|
||||
|
|
Loading…
Reference in New Issue