We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2f9821 commit 2a47376Copy full SHA for 2a47376
src/atomate2/forcefields/schemas.py
@@ -31,7 +31,7 @@ class ForceFieldMeta(BaseModel):
31
)
32
33
forcefield_version: str | None = Field(
34
- None,
+ "Unknown",
35
description="version of the interatomic potential used for relaxation.",
36
37
@@ -88,7 +88,7 @@ class ForceFieldTaskDocument(AseStructureTaskDoc, ForceFieldMeta):
88
"""Document containing information on atomistic manipulation using a force field."""
89
90
@classmethod
91
- def from_ase_compatible_result( # type: ignore[override]
+ def from_ase_compatible_result(
92
cls,
93
ase_calculator_name: str,
94
result: AseResult,
0 commit comments