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 cbbbc07 commit b62fa1bCopy full SHA for b62fa1b
pymatgen/io/validation/check_incar.py
@@ -866,6 +866,9 @@ def _check_parameter(
866
867
append_comments = append_comments or ""
868
869
+ if isinstance(current_value, str):
870
+ current_value = current_value.upper()
871
+
872
kwargs: dict[str, Any] = {}
873
if operation == "approx" and isinstance(current_value, float):
874
kwargs.update({"rel_tol": tolerance or self.tolerance, "abs_tol": 0.0})
0 commit comments