From b1447cfe9b03860ba26fd31891d253c4e2b62402 Mon Sep 17 00:00:00 2001 From: Matthew Kuner <82329282+matthewkuner@users.noreply.github.com> Date: Tue, 24 Oct 2023 16:54:04 -0700 Subject: [PATCH] remove unneeded comment --- pymatgen/io/validation/validation.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pymatgen/io/validation/validation.py b/pymatgen/io/validation/validation.py index 07c4fa4..d821665 100644 --- a/pymatgen/io/validation/validation.py +++ b/pymatgen/io/validation/validation.py @@ -338,7 +338,6 @@ def _check_potcars(reasons, warnings, calcs_reversed, calc_type, valid_potcar_ha """ ### TODO: Update potcar checks. Whether using hashing or not! - ##################################### TODO: Only create a warning for NSCF / dielectric / DFPT / any other NSCF calc types try: potcar_details = calcs_reversed[0]["input"]["potcar_spec"] @@ -408,4 +407,4 @@ def _get_calc_type(calcs_reversed, orig_inputs): params = calcs_reversed[0].get("input", {}).get("parameters", {}) incar = calcs_reversed[0].get("input", {}).get("incar", {}) - return calc_type(inputs, {**params, **incar}) \ No newline at end of file + return calc_type(inputs, {**params, **incar})