Skip to content

Commit

Permalink
Fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
munrojm committed Nov 13, 2023
1 parent 823f4e7 commit 8b15e00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions emmet-core/emmet/core/vasp/calculation.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ def from_vasp_files(
parse_bandstructure: Union[str, bool] = False,
average_locpot: bool = True,
run_bader: bool = False,
run_ddec6: bool | str = False,
run_ddec6: Union[bool , str] = False,
strip_bandstructure_projections: bool = False,
strip_dos_projections: bool = False,
store_volumetric_data: Optional[Tuple[str]] = None,
Expand Down Expand Up @@ -665,7 +665,7 @@ def from_vasp_files(
Whether to store the average of the LOCPOT along the crystal axes.
run_bader : bool = False
Whether to run bader on the charge density.
run_ddec6 : bool | str = False
run_ddec6 : Union[bool , str] = False
Whether to run DDEC6 on the charge density. If a string, it's interpreted
as the path to the atomic densities directory. Can also be set via the
DDEC6_ATOMIC_DENSITIES_DIR environment variable. The files are available at
Expand Down

0 comments on commit 8b15e00

Please sign in to comment.