From 971a446422effad9da04c7655d498b7cdbcbc634 Mon Sep 17 00:00:00 2001 From: Shyam D Date: Thu, 1 Oct 2020 13:49:13 -0700 Subject: [PATCH] fix entries type hint --- emmet-core/emmet/core/vasp/material.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emmet-core/emmet/core/vasp/material.py b/emmet-core/emmet/core/vasp/material.py index 68c87cd2de..9c0650f461 100644 --- a/emmet-core/emmet/core/vasp/material.py +++ b/emmet-core/emmet/core/vasp/material.py @@ -41,6 +41,6 @@ class MaterialsDoc(CoreMaterialsDoc, StructureMetadata): None, description="Dictionary for tracking the provenance of properties" ) - entries: Dict[ComputedEntry] = Field( + entries: Dict[RunType, ComputedEntry] = Field( None, description="Dictionary for tracking entries for VASP calculations" )