Skip to content

Commit

Permalink
nocover
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmshn committed Jan 26, 2023
1 parent 7dac1f5 commit 9edb5da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pymatgen/analysis/defects/corrections/kumagai.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@

# check that pydefect is installed
try:
from pydefect.analyzer.calc_results import CalcResults
from pydefect.cli.vasp.make_efnv_correction import make_efnv_correction
from vise import user_settings
except ImportError:
except ImportError: # pragma: no cover
raise ModuleNotFoundError(
"vise/pydefect is not installed. Please install it first."
)

# Disable messages from pydefect import
user_settings.logger.setLevel(logging.CRITICAL)

from pydefect.analyzer.calc_results import CalcResults
from pydefect.cli.vasp.make_efnv_correction import make_efnv_correction
from pymatgen.core import Structure
from pymatgen.io.vasp import Outcar, Vasprun

Expand Down

0 comments on commit 9edb5da

Please sign in to comment.