Skip to content

Commit

Permalink
use value to make full calc_type
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamd committed Oct 17, 2020
1 parent 4945ac7 commit 6ef4c8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions emmet-core/emmet/core/vasp/calc_types.py
Expand Up @@ -165,6 +165,6 @@ def calc_type(
inputs: inputs dict with an incar, kpoints, potcar, and poscar dictionaries
parameters: Dictionary of VASP parameters from Vasprun.xml
"""
rt = run_type(parameters)
tt = task_type(inputs)
rt = run_type(parameters).value
tt = task_type(inputs).value
return CalcType(f"{rt} {tt}")

0 comments on commit 6ef4c8b

Please sign in to comment.